layui/.svn/pristine/e6/e64985115cca91cf593f0ab304e20c6be9c98d70.svn-base
2022-12-09 16:41:41 +08:00

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";