2023-02-17 05:55:25 +00:00
|
|
|
type SwitchWithLabelOptionalProps = {
|
2023-03-30 03:52:10 +00:00
|
|
|
baseInputProps?: import('@mui/material').InputBaseComponentProps;
|
2023-03-29 20:59:35 +00:00
|
|
|
formControlLabelProps?: import('@mui/material').FormControlLabelProps;
|
2023-02-17 05:55:25 +00:00
|
|
|
switchProps?: import('@mui/material').SwitchProps;
|
|
|
|
};
|
|
|
|
|
|
|
|
type SwitchWithLabelProps = SwitchWithLabelOptionalProps &
|
|
|
|
Pick<
|
|
|
|
import('@mui/material').SwitchProps,
|
|
|
|
'checked' | 'id' | 'name' | 'onChange'
|
|
|
|
> & {
|
|
|
|
label: import('react').ReactNode;
|
|
|
|
};
|