anvil/striker-ui/types/CheckboxWithLabel.d.ts

13 lines
368 B
TypeScript
Raw Normal View History

2022-11-24 00:34:22 +00:00
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'];
};