UNPKG

mui-toolpad-extended-tuni

Version:
9 lines (8 loc) 283 B
/** @format */ interface EditableSwitchProps { value: boolean; onChange: (value: boolean) => void; label: string; } declare const EditableSwitch: ({ value, onChange, label }: EditableSwitchProps) => import("react/jsx-runtime").JSX.Element; export default EditableSwitch;