22 lines
587 B
TypeScript
22 lines
587 B
TypeScript
import * as React from "react";
|
|
|
|
import { cn } from "@/lib/utils";
|
|
|
|
const Input = React.forwardRef<
|
|
HTMLInputElement,
|
|
React.InputHTMLAttributes<HTMLInputElement>
|
|
>(({ className, type, ...props }, ref) => (
|
|
<input
|
|
ref={ref}
|
|
type={type}
|
|
className={cn(
|
|
"flex h-11 w-full rounded-xl border border-[color:var(--border)] bg-[color:var(--surface)] px-4 text-sm text-strong shadow-sm focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-[color:var(--accent)]",
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
));
|
|
Input.displayName = "Input";
|
|
|
|
export { Input };
|