| import React from "react"; | |
| type Props = React.PropsWithChildren<{ | |
| label: string; | |
| }>; | |
| export default function Field({ label, children }: Props) { | |
| return ( | |
| <label style={{ display: "block", marginBottom: 12 }}> | |
| <div style={{ fontSize: 12, opacity: 0.8, marginBottom: 6 }}>{label}</div> | |
| {children} | |
| </label> | |
| ); | |
| } | |