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