mango-v4-ui/components/forms/Label.tsx

11 lines
281 B
TypeScript
Raw Normal View History

2022-07-21 22:09:04 -07:00
const Label = ({ text, optional }: { text: string; optional?: boolean }) => (
2022-11-16 18:18:50 -08:00
<p className="mb-2 text-left text-sm text-th-fgd-3">
2022-07-21 22:09:04 -07:00
{text}{' '}
{optional ? (
<span className="ml-1 text-xs text-th-fgd-4">(Optional)</span>
) : null}
</p>
2022-07-20 21:50:56 -07:00
)
export default Label