UNPKG

react-planner-viewer

Version:

react-planner-viewer is a React Component for view plans builded with react-planner in 2D mode

11 lines (8 loc) 237 B
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> }