jbilcke-hf's picture
jbilcke-hf HF staff
we now have.. custom models β˜„οΈ.. and settings ✨
11d758a
raw
history blame
No virus
194 Bytes
import { ReactNode } from "react"
export function Label({ children }: { children: ReactNode }) {
return (
<label className="text-base font-semibold text-zinc-700">{children}</label>
)
}