UNPKG
@kalamazoo/docs
Version:
latest (1.0.0)
1.0.0
Utilities for building documentation
github.com/stevenselcuk/kalamazoo
stevenselcuk/kalamazoo
@kalamazoo/docs
/
dist
/
esm
/
Props
/
components
/
Indent.js
8 lines
•
174 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
import
React
from
'react'
;
export
default
function
Indent
(
props
) {
return
React
.
createElement
(
"div"
, {
style
: {
paddingLeft
:
'1.3em'
} }, props.
children
); }