UNPKG
yoda-common-boilerplate
Version:
latest (1.0.0)
1.0.0
Repository of all JCP reusable atoms, molecules and organisms
yoda-common-boilerplate
/
src
/
constants
/
Styles.js
19 lines
(14 loc)
•
301 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
const
LAYOUT
= {
DIRECTION
: {
HORIZONTAL
:
'horizontal'
,
VERTICAL
:
'vertical'
,
WRAP
:
'wrap'
},
SPACING
: {
COMFY
:
'comfy'
,
// Most padding
COZY
:
'cozy'
,
// Medium padding
COMPACT
:
'compact'
,
// Least padding
NONE
:
'none'
// No padding
} };
export
default
LAYOUT
;