UNPKG

eventx-design-system

Version:
11 lines 368 B
import React from 'react'; export interface TagProps { variant?: 'primary' | 'secondary' | 'success' | 'error' | 'warning' | 'info' | 'outline'; size?: 'sm' | 'md' | 'lg'; children: React.ReactNode; onRemove?: () => void; removable?: boolean; className?: string; } export declare const Tag: React.FC<TagProps>; //# sourceMappingURL=Tag.d.ts.map