sales / frontend /src /components /Field.tsx
Corin1998's picture
Create components/Field.tsx
bb301ac verified
raw
history blame contribute delete
337 Bytes
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>
);
}