File size: 297 Bytes
11d758a
 
b022cb9
 
 
 
 
 
11d758a
b022cb9
 
 
 
11d758a
 
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>
  )
}