UNPKG
@kalamazoo/docs
Version:
latest (1.0.0)
1.0.0
Utilities for building documentation
github.com/stevenselcuk/kalamazoo
stevenselcuk/kalamazoo
@kalamazoo/docs
/
dist
/
cjs
/
Props
/
components
/
Indent.js.flow
7 lines
(5 loc)
•
185 B
Flow
View Raw
1
2
3
4
5
6
7
// @flow
import
React
, { type
Node
}
from
'react'
;
export
default
function
Indent
(
props: { children: Node }
) {
return
<
div
style
=
{{
paddingLeft:
'
1.3em
' }}>
{props.children}
</
div
>
; }