@naturacosmeticos/natds-react
Version:
A collection of components from Natura Design System for React
8 lines (7 loc) • 464 B
TypeScript
import { Theme } from '@naturacosmeticos/natds-themes';
import { ButtonProps } from './Button.props';
declare type ButtonStyleProps = Pick<ButtonProps, 'size' | 'showIcon' | 'iconPosition' | 'variant' | 'fullWidth' | 'disabled' | 'brand' | 'textTransform' | 'color' | 'mode'>;
declare const styles: (data?: (ButtonStyleProps & {
theme?: Theme | undefined;
}) | undefined) => import("jss").Classes<"button" | "label" | "labelContainer">;
export default styles;