UNPKG

react-planner-electron

Version:

react-planner-electron is a React Component for plans design. Draw a 2D floorplan and navigate it in 3D 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> }