@naturacosmeticos/natds-react
Version:
A collection of components from Natura Design System for React
8 lines (7 loc) • 327 B
TypeScript
import { Theme } from '@naturacosmeticos/natds-themes';
import { IconProps } from './Icon.props';
declare type IconStyleProps = Pick<IconProps, 'size' | 'color' | 'brand'>;
declare const styles: (data?: (IconStyleProps & {
theme?: Theme | undefined;
}) | undefined) => import("jss").Classes<"icon">;
export default styles;