mirror of
https://github.com/tmdinosaurcenter/gas-form.git
synced 2025-04-04 03:11:22 -06:00
5 lines
195 B
TypeScript
5 lines
195 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>
|
|
}
|
|
|