Mislav Lukach 764077ef3d
Feat/create UI dir (#9462)
Co-authored-by: amanape <83104063+amanape@users.noreply.github.com>
2025-07-03 13:26:19 +00:00

18 lines
501 B
TypeScript

export type ChipVariant = "pill" | "corner";
export type ChipColor =
| "primaryDark"
| "primaryLight"
| "green"
| "red"
| "aqua"
| "gray";
export const chipStyles: Record<ChipColor, string> = {
aqua: "border-aqua-500 text-aqua-500",
gray: "border-light-neutral-400 text-light-neutral-400",
green: "border-green-500 text-green-500",
red: "border-red-400 text-red-400",
primaryDark: "border-primary-400 text-primary-400",
primaryLight: "border-primary-200 text-primary-200",
};