import * as React from 'react'; import { cn } from '@/lib/utils'; /** * 标准 shadcn/ui Input 组件 * 遵循 shadcn/ui 规范:纯 input 元素 + data-slot + cn 工具 * * 若需 label/error 属性,请使用 LabeledInput 组件 */ const Input = React.forwardRef>( ({ className, type, ...props }, ref) => { return ( ); } ); Input.displayName = 'Input'; export { Input };