@naturacosmeticos/natds-react
Version:
A collection of components from Natura Design System for React
8 lines (7 loc) • 435 B
TypeScript
import { Theme } from '@naturacosmeticos/natds-themes';
import { SwitchProps } from './Switch.props';
declare type SwitchStyleProps = Pick<SwitchProps, 'checked' | 'disabled' | 'brand'>;
declare const styles: (data?: (SwitchStyleProps & {
theme?: Theme | undefined;
}) | undefined) => import("jss").Classes<"switchContainer" | "switchBase" | "switchInput" | "switchTrack" | "switchOverlay" | "switchThumb">;
export default styles;