build storybook

This commit is contained in:
2023-10-11 10:29:52 +03:00
parent 49924d6bf8
commit 6faca04c8f
146 changed files with 4495 additions and 0 deletions

12
docs/colors.d.ts vendored Normal file
View File

@@ -0,0 +1,12 @@
export declare enum ColorEnum {
primary = "primary",
accent = "accent",
info = "info",
success = "success",
warning = "warning",
error = "error",
dark = "dark",
light = "light"
}
export type TColor = keyof typeof ColorEnum;
export declare const colors: ("primary" | "accent" | "info" | "success" | "warning" | "error" | "dark" | "light")[];