anvil/striker-ui/types/CheckboxWithLabel.d.ts
2022-11-28 14:37:21 -05:00

13 lines
368 B
TypeScript

type CheckboxWithLabelOptionalProps = Partial<
Pick<CheckboxProps, 'checked' | 'onChange'>
> & {
checkboxProps?: Partial<CheckboxProps>;
formControlLabelProps?: Partial<
import('@mui/material').FormControlLabelProps
>;
};
type CheckboxWithLabelProps = CheckboxWithLabelOptionalProps & {
label: import('@mui/material').FormControlLabelProps['label'];
};