@naturacosmeticos/natds-react
Version:
A collection of components from Natura Design System for React
21 lines (20 loc) • 692 B
TypeScript
import { Theme } from '@naturacosmeticos/natds-themes';
import { BrandTypes } from '../../brandTypes/brandTypes';
declare type ChipStyleProps = {
color: 'neutral' | 'primary' | 'secondary' | 'custom';
hasLeftIcon: boolean;
hasRightIcon: boolean;
hasLeftAvatar: boolean;
hasRightAvatar: boolean;
isDisabled: boolean;
isSelected: boolean;
customBackground?: string;
customBorderColor?: string;
customLabelColor?: string;
size: 'semi' | 'semiX' | 'medium';
brand?: BrandTypes;
};
declare const styles: (data?: (ChipStyleProps & {
theme?: Theme | undefined;
}) | undefined) => import("jss").Classes<"label" | "wrapper">;
export default styles;