import { TSizeAll } from '../../types'; export type TBadgeColor = 'aero' | 'blue' | 'grey' | 'black' | 'green' | 'navy' | 'mint' | 'purple' | 'slate' | 'pink' | 'red' | 'yellow'; export interface IBadgeProps { /** * the content to render inside the chip */ text?: number | string; /** * the content to render inside the chip * @default 'red' */ color?: TBadgeColor; /** * each chip needs a unique ID to return when clicked */ id: string; /** * Increases spacing and padding of the chip * @default 'sm' */ size?: TSizeAll; /** * apply custom CSS */ style?: React.CSSProperties; /** * apply custom className */ className?: string; } //# sourceMappingURL=types.d.ts.map