jbilcke-hf's picture
jbilcke-hf HF staff
add toggle for video orientation
93ad82e
raw
history blame contribute delete
284 Bytes
import { ReactNode } from "react"
import { cn } from "@/lib/utils/cn"
export function Label({ children, className = "" }: { children: ReactNode; className?: string }) {
return (
<label className={cn(`text-base font-semibold text-zinc-700`, className)}>{children}</label>
)
}