add storybook

This commit is contained in:
2023-10-11 10:17:11 +03:00
parent 86f60998d3
commit 97cf30c03e
176 changed files with 4997 additions and 376 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")[];