import { cn } from "@frontend/lib/utils" import { forwardRef, InputHTMLAttributes } from "react" export type InputPropsType = {} & InputHTMLAttributes const MyInput = forwardRef( ({ className, type, ...props }, ref) => { return ( ) }, ) MyInput.displayName = "Input" export default MyInput