import {SwitchProps} from '@mui/material/Switch'; import {ColorsNameType} from '../../../../types/entities/colors-name'; export type SwitchSizesType = 'sm' | 'md'; export type SwitchColorsType = ColorsNameType; export interface ISwitch extends SwitchProps { checked?: boolean; disabled?: boolean; size?: SwitchSizesType; color?: SwitchColorsType; title?: string; hint?: string; } export interface ICustomSwitch { scheme?: SwitchColorsType; }