import { type VariantProps, cva } from "class-variance-authority"; import { cn } from "../../../lib/utils"; import { Input as ShadcnInput } from "../input"; import "./styles/retro.css"; export const inputVariants = cva("", { variants: { font: { normal: "", retro: "retro", }, }, defaultVariants: { font: "retro", }, }); export interface BitInputProps extends React.InputHTMLAttributes, VariantProps { asChild?: boolean; } function Input({ ...props }: BitInputProps) { const { className, font } = props; return (
); } export { Input };