import { type ReactElement } from "react"; import * as React from "react"; import { cn } from "@/lib/utils"; /** * Input — shadcn/WealthX * Base: npx shadcn\@latest add input * WealthX: removed rounded-md (square corners), added font-sans. */ export type InputProps = React.ComponentProps<"input">; const Input = React.forwardRef(function Input( { className, type, ...props }, ref ): ReactElement { return ( ); }); export { Input };