| 32 | import ClearIcon from '@mui/icons-material/Clear'; |
| 33 | |
| 34 | interface ShortcutFieldProps { |
| 35 | value: string; |
| 36 | onChange: (shortcut: string) => void; |
| 37 | disable?: boolean; |
| 38 | minWidth?: string; |
| 39 | } |
| 40 | |
| 41 | export default function ShortcutField({ value, onChange, disable = false, minWidth = '10rem' }: ShortcutFieldProps) { |
| 42 | const { t } = useTranslation(); |
nothing calls this directly
no outgoing calls
no test coverage detected