This commit is contained in:
2024-09-25 09:42:05 +08:00
parent 30528311c1
commit 0c45925be9
6 changed files with 46 additions and 52 deletions

View File

@@ -1,4 +1,4 @@
export declare const TAG_COLORS: readonly ["primary", "normal", "warm", "danger"];
export type TagType = typeof TAG_COLORS[number];
export type TagType = (typeof TAG_COLORS)[number];
export type TagShape = "square" | "round";
export type TagVariant = "dark" | "light" | "plain";