wacomm 1.68.1 → 1.68.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/Tag.d.ts CHANGED
@@ -4,22 +4,8 @@ interface TagProps {
4
4
  onClick?: ZeroFuncType;
5
5
  className?: string;
6
6
  labelSize?: TagLabelSize;
7
- color?: TagColor;
8
- }
9
- export declare enum TagColor {
10
- Red = "bg-red-600 text-white",
11
- Lime = "bg-lime-700 text-white",
12
- Blue = "bg-blue-500 text-white",
13
- Violet = "bg-violet-600 text-white",
14
- Slate = "bg-slate-300 text-white",
15
- Cyan = "bg-cyan-600 text-white",
16
- Yellow = "bg-yellow-700 text-white"
17
- }
18
- export declare enum TagLabelSize {
19
- Lg = "text-lg",
20
- Sm = "text-sm",
21
- Xs = "text-xs",
22
- Base = "text-base"
7
+ color?: number;
23
8
  }
9
+ type TagLabelSize = 'lg' | 'sm' | 'xs' | 'base';
24
10
  declare function Tag({ label, onClick, className, labelSize, color }: TagProps): import("react/jsx-runtime").JSX.Element;
25
11
  export default Tag;