forked from labex-labs/python-cheatsheet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathui.ts
More file actions
51 lines (46 loc) · 875 Bytes
/
ui.ts
File metadata and controls
51 lines (46 loc) · 875 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import { FunctionalComponent } from 'vue'
type optionsObject = {
[key: string]: string
}
type colorObject = {
[key: string]: string | undefined
primary?: string
secondary?: string
transparent?: string
danger?: string
black?: string
blue?: string
gray?: string
purple?: string
pink?: string
orange?: string
green?: string
slate?: string
zinc?: string
neutral?: string
stone?: string
amber?: string
yellow?: string
lime?: string
emerald?: string
tal?: string
cyan?: string
sky?: string
indigo?: string
violet?: string
fuchsia?: string
rose?: string
}
type sizeObject = {
[key: string]: string | undefined
xs?: string
sm: string
md: string
lg?: string
xl?: string
square?: string
}
type iconObject = {
[key: string]: FunctionalComponent
}
export { optionsObject, colorObject, sizeObject, iconObject }