14 lines
423 B
TypeScript
14 lines
423 B
TypeScript
import type { InputHTMLAttributes } from "react";
|
|
import { cn } from "@/lib/utils";
|
|
export function Input({ className, ...props }: InputHTMLAttributes<HTMLInputElement>) {
|
|
return (
|
|
<input
|
|
className={cn(
|
|
"flex h-10 w-full rounded-md border border-input bg-background px-3 py-2 text-sm outline-none focus-visible:ring-2 focus-visible:ring-ring",
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|