Duplicated from jbilcke-hf/ai-comic-factory
11d758a 1c1e6e9 11d758a
1
2
3
4
5
6
7
import { ReactNode } from "react" export function Label({ children }: { children: ReactNode }) { return ( <label className="text-xl font-semibold text-zinc-700">{children}</label> ) }