@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 { RadioButtonProps } from './RadioButton.props';
declare type RadioButtonStyleProps = Pick<RadioButtonProps, 'disabled' | 'brand'>;
declare const styles: (data?: (RadioButtonStyleProps & {
theme?: Theme | undefined;
}) | undefined) => import("jss").Classes<"container" | "wrapper" | "labelText" | "radioButton">;
export default styles;