We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
FlexBox
1 parent 59235ef commit 2b700fdCopy full SHA for 2b700fd
src/box/index.mdx renamed to src/box/about.mdx
@@ -7,6 +7,8 @@ import { Box } from './index'
7
8
# Box Component
9
10
+Most basic element and most re-usable.
11
+
12
<Playground>
13
<Box bg='#000000' fg='#ffffff' ht='200px'>
14
Hello World
src/flex-box/about.mdx
@@ -0,0 +1,24 @@
1
+---
2
+name: FlexBox
3
4
5
+import { Link, Playground } from 'docz'
6
+import { FlexBox } from './index'
+# FlexBox Component
+Like `Box` component, but extended with [flexbox](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Flexible_Box_Layout) specific props.
+<Playground>
+ <FlexBox>
+ <FlexBox.Item>
15
+ Item
16
+ </FlexBox.Item>
17
+ <FlexBox.Item grow>
18
19
20
21
22
23
+ </FlexBox>
24
+</Playground>
0 commit comments