import * as React from 'react'; import { cn } from '#utils'; export type InputProps = React.InputHTMLAttributes; export const Input = React.forwardRef(function Input({ className, type, ...props }, ref) { return ( ); });