@naturacosmeticos/natds-react
Version:
A collection of components from Natura Design System for React
8 lines (7 loc) • 411 B
TypeScript
import { Theme } from '@naturacosmeticos/natds-themes';
import { TagProps } from './Tag.props';
declare type TagStyleProps = Pick<TagProps, 'size' | 'color' | 'position' | 'customBackgroundColor' | 'customLabelColor' | 'brand'>;
declare const styles: (data?: (TagStyleProps & {
theme?: Theme | undefined;
}) | undefined) => import("jss").Classes<"content" | "container" | "wrapper">;
export default styles;