import React from 'react'; import { Appbar, useTheme } from 'react-native-paper'; import { StyleSheet } from 'react-native'; interface BottomActionBarProps { onRun: () => void; onSave: () => void; onUndo: () => void; onRestore: () => void; onBack: () => void; isSaveDisabled?: boolean; } const BottomActionBar: React.FC = ({ onRun, onSave, onUndo, onRestore, onBack, isSaveDisabled = true, }) => { const theme = useTheme(); return ( ); }; const styles = StyleSheet.create({ bottom: { position: 'absolute', left: 0, right: 0, bottom: 0, justifyContent: 'space-around', }, }); export default BottomActionBar;