UNPKG

358 BJavaScriptView Raw
1import React from "react";
2
3export default function LabelLine({ label, children, height = 40 }) {
4 return (
5 <div
6 style={{
7 display: "flex",
8 alignItems: "center",
9 height: height + "px",
10 }}
11 >
12 <div style={{ flexShrink: 0 }}>{label}:</div>
13 <div style={{ flexGrow: 1 }}>{children}</div>
14 </div>
15 );
16}