@useloops/design-system
Version:
The official React based Loops design system
23 lines (20 loc) • 772 B
TypeScript
import { FormControlLabelProps as FormControlLabelProps$1, SxProps, Theme } from '@mui/material';
import { FunctionComponent, ReactElement } from 'react';
interface FormControlLabelProps {
control: FormControlLabelProps$1['control'];
checked?: boolean;
disabled?: boolean;
label?: string | ReactElement;
labelPlacement?: FormControlLabelProps$1['labelPlacement'];
sx?: SxProps<Theme>;
onChange?: FormControlLabelProps$1['onChange'];
value?: unknown;
required?: boolean;
error?: boolean;
name?: string;
id?: string;
inputRef?: FormControlLabelProps$1['inputRef'];
}
declare const FormControlLabel: FunctionComponent<FormControlLabelProps>;
export { FormControlLabel as default };
export type { FormControlLabelProps };