This commit is contained in:
Vula Builder
2026-07-14 19:12:51 +00:00
parent 5a3e6ee44c
commit 8d22f620d7
+25
View File
@@ -0,0 +1,25 @@
'use client'
import React from 'react'
import { cn } from '@/lib/utils'
interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> {
error?: string
}
export default function Input({ className, error, ...props }: InputProps) {
return (
<div className='w-full'>
<input
className={cn(
'flex h-10 w-full rounded-md border border-border bg-background px-3 py-2 text-sm text-foreground placeholder:text-muted-foreground focus:outline-none focus:border-primary disabled:cursor-not-allowed disabled:opacity-50',
error && 'border-red-500 focus:border-red-500',
className
)}
aria-invalid={error ? 'true' : undefined}
{...props}
/>
{error && <p className='mt-1 text-sm text-red-500'>{error}</p>}
</div>
)
}