@naturacosmeticos/natds-react
Version:
A collection of components from Natura Design System for React
8 lines (7 loc) • 403 B
TypeScript
import { Theme } from '@naturacosmeticos/natds-themes';
import { CheckboxProps } from './Checkbox.props';
declare type CheckboxStyleProps = Pick<CheckboxProps, 'indeterminate' | 'disabled' | 'brand'>;
declare const styles: (data?: (CheckboxStyleProps & {
theme?: Theme | undefined;
}) | undefined) => import("jss").Classes<"checkbox" | "container" | "wrapper" | "labelText">;
export default styles;