| 1234567891011121314151617181920 |
- import type { InputHTMLAttributes } from "react";
- import { cn } from "@/lib/utils";
- export function Input({
- className,
- type = "text",
- ...props
- }: InputHTMLAttributes<HTMLInputElement>) {
- return (
- <input
- type={type}
- className={cn(
- "flex h-9 w-full rounded-md border border-border bg-background px-3 text-sm text-foreground placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-accent disabled:cursor-not-allowed disabled:opacity-50",
- className,
- )}
- {...props}
- />
- );
- }
|