File size: 194 Bytes
11d758a
 
 
 
 
 
 
1
2
3
4
5
6
7
import { ReactNode } from "react"

export function Label({ children }: { children: ReactNode }) {
  return (
    <label className="text-base font-semibold text-zinc-700">{children}</label>
  )
}