File tree Expand file tree Collapse file tree 2 files changed +16
-3
lines changed
example/storybook/stories/components/composites/Divider Expand file tree Collapse file tree 2 files changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,11 @@ export const Example = () => {
8
8
< Heading mx = "3" alignItems = "center" flexDirection = "row" >
9
9
Chrome
10
10
</ Heading >
11
- < Divider my = "2" />
11
+ < Divider
12
+ my = "2"
13
+ _light = { { bg : 'muted.800' } }
14
+ _dark = { { bg : 'muted.50' } }
15
+ />
12
16
< Heading mx = "3" alignItems = "center" flexDirection = "row" >
13
17
Firefox
14
18
</ Heading >
Original file line number Diff line number Diff line change @@ -6,10 +6,19 @@ export const Example = () => {
6
6
< Box alignItems = "center" >
7
7
< Box w = "160" >
8
8
< Heading mx = "auto" > Shoes</ Heading >
9
- < Divider my = "2" />
9
+ < Divider
10
+ my = "2"
11
+ _light = { { bg : 'muted.800' } }
12
+ _dark = { { bg : 'muted.50' } }
13
+ />
10
14
< Flex mx = "3" direction = "row" justify = "space-evenly" h = "60" >
11
15
< Heading py = "2" > Girls</ Heading >
12
- < Divider orientation = "vertical" mx = "3" />
16
+ < Divider
17
+ orientation = "vertical"
18
+ mx = "3"
19
+ _light = { { bg : 'muted.800' } }
20
+ _dark = { { bg : 'muted.50' } }
21
+ />
13
22
< Heading py = "2" > Boys</ Heading >
14
23
</ Flex >
15
24
</ Box >
You can’t perform that action at this time.
0 commit comments