mirror of
https://github.com/tmdinosaurcenter/gas-form.git
synced 2025-04-04 03:11:22 -06:00
4 lines
194 B
TypeScript
4 lines
194 B
TypeScript
export function Label({ htmlFor, children }: { htmlFor: string; children: React.ReactNode }) {
|
|
return <label htmlFor={htmlFor} className="block font-medium text-mdc-dark">{children}</label>
|
|
}
|