8 lines
224 B
Plaintext
8 lines
224 B
Plaintext
export const TAG_COLORS = ["primary", "normal", "warm", "danger"] as const;
|
|
|
|
export type TagType = typeof TAG_COLORS[number];
|
|
|
|
export type TagShape = "square" | "round";
|
|
|
|
export type TagVariant = "dark" | "light" | "plain";
|