"use client"; import * as React from "react"; import * as LabelPrimitive from "@radix-ui/react-label"; import { type VariantProps, cva } from "class-variance-authority"; import { cn } from "../../../lib/utils"; import { Label as ShadcnLabel } from "../label"; import "./styles/retro.css"; export const inputVariants = cva("", { variants: { font: { normal: "", retro: "retro", }, }, defaultVariants: { font: "retro", }, }); interface BitLabelProps extends React.ComponentProps, VariantProps { asChild?: boolean; } function Label({ className, font, ...props }: BitLabelProps) { return ( ); } export { Label };