import * as React from "react"; import { cn } from "@repo/shadcn-ui/lib/utils"; function Input({ className, type, ...props }: React.ComponentProps<"input">) { return ( ); } export { Input };