@useloops/design-system
Version:
The official React based Loops design system
12 lines (9 loc) • 363 B
TypeScript
import { CheckboxProps } from '@mui/material';
import { FunctionComponent } from 'react';
interface StyledCheckboxProps extends CheckboxProps {
sizing?: 'default' | 'lg';
variant?: 'default' | 'secondary';
}
declare const StyledCheckbox: FunctionComponent<StyledCheckboxProps>;
export { StyledCheckbox as default };
export type { StyledCheckboxProps };