Spaces:
Runtime error
Runtime error
File size: 297 Bytes
c511b81 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | import { ReactNode } from "react"
import { cn } from "@/lib/utils"
export function Label({ className, children }: {
className?: string
children: ReactNode
}) {
return (
<label className={cn(
`text-base font-semibold text-zinc-700`,
className
)}>{children}</label>
)
} |