import { cn } from "@lib/utils"; import { Root } from "@radix-ui/react-slot"; export function Label3Regular({ className, asChild, ...props }: React.ComponentProps<"p"> & { asChild?: boolean }) { const Comp = asChild ? Root : "p"; return ( ); }