jbilcke-hf's picture
jbilcke-hf HF Staff
slight UI redesign
1c1e6e9
raw
history blame contribute delete
192 Bytes
import { ReactNode } from "react"
export function Label({ children }: { children: ReactNode }) {
return (
<label className="text-xl font-semibold text-zinc-700">{children}</label>
)
}