import { Variable } from 'astal'; import { RowProps } from 'src/lib/types/options'; import { Inputter } from '../Inputter'; export const SettingInput = ({ className, isUnsaved, ...props }: SettingInputProps): JSX.Element => { return ( ); }; interface SettingInputProps extends RowProps { className?: string; isUnsaved: Variable; }