UNPKG
react-planner-viewer
Version:
latest (1.7.30)
1.7.30
1.7.29
1.7.28
1.7.27
1.7.26
1.7.25
1.7.23
1.7.22
1.7.21
1.7.20
1.7.19
1.7.17
1.7.16
1.7.15
1.7.14
1.7.13
1.7.12
1.7.11
1.7.10
1.7.9
1.7.8
1.7.7
1.7.6
1.7.5
1.7.4
1.7.3
1.7.2
1.7.0
react-planner-viewer is a React Component for view plans builded with react-planner in 2D mode
react-planner-viewer
/
src
/
components
/
style
/
form-label.jsx
11 lines
(8 loc)
•
237 B
JSX
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
React
from
'react'
;
const
BASE_STYLE
= {
display
:
"block"
,
marginBottom
:
"5px"
};
export
default
function
FormLabel
(
{children, style, ...rest}
) {
return
<
label
style
=
{{...BASE_STYLE,
style
}} {
...rest
}>
{children}
</
label
>
}