-
Notifications
You must be signed in to change notification settings - Fork 0
/
mapping.js
49 lines (41 loc) · 1.02 KB
/
mapping.js
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
// Reference: https://styled-system.com/table/
export default {
margin: "space",
"margin-top": "space",
"margin-right": "space",
"margin-bottom": "space",
"margin-left": "space",
padding: "space",
"padding-top": "space",
"padding-right": "space",
"padding-bottom": "space",
"padding-left": "space",
"grid-gap": "space",
"grid-row-gap": "space",
"grid-column-gap": "space",
background: "colors",
font: "fonts",
"font-family": "fonts",
"font-size": "fontSizes",
"font-weight": "fontWeights",
"line-height": "lineHeights",
"letter-spacing": "letterSpacings",
width: "sizes",
height: "sizes",
"min-width": "sizes",
"max-width": "sizes",
"min-height": "sizes",
"max-height": "sizes",
border: "borders",
"border-top": "borders",
"border-right": "borders",
"border-bottom": "borders",
"border-left": "borders",
"border-width": "borderWidths",
"border-style": "borderStyles",
"border-radius": "radii",
"box-shadow": "shadows",
"text-shadow": "shadows",
transition: "transitions",
"z-index": "zIndices"
};