haixunMaster/components/ui/input.tsx

19 lines
571 B
TypeScript
Raw Normal View History

2026-06-21 12:50:31 +00:00
import * as React from "react";
import { cn } from "@/lib/utils";
const Input = React.forwardRef<HTMLInputElement, React.ComponentProps<"input">>(
({ className, type, ...props }, ref) => (
<input
type={type}
className={cn(
"pixel-input flex h-10 w-full px-3 py-2 text-[14px] text-foreground transition-colors placeholder:text-muted-foreground/70 focus-visible:outline-none disabled:cursor-not-allowed disabled:opacity-50",
className
)}
ref={ref}
{...props}
/>
)
);
Input.displayName = "Input";
export { Input };