import { InputProps } from '../interfaces.js';
export type IInputSwitch = {
color?: string;
design?: 'checkbox';
defaultActive?: boolean;
inputSwitchCheckbox?: {
valueIsTrue: {
Icon: () => React.ReactNode;
};
valueIsFalse: {
Icon: () => React.ReactNode;
};
};
} & InputProps;