zanekwok's picture
init
450060f
raw
history blame contribute delete
194 Bytes
import { ReactNode } from "react"
export function Label({ children }: { children: ReactNode }) {
return (
<label className="text-base font-semibold text-zinc-700">{children}</label>
)
}