diff --git a/kibbeh/src/ui/Input.tsx b/kibbeh/src/ui/Input.tsx index c7bf76b0a..7d067ad69 100644 --- a/kibbeh/src/ui/Input.tsx +++ b/kibbeh/src/ui/Input.tsx @@ -12,7 +12,7 @@ export const Input = forwardRef( ({ className, textarea, error, transparent, ...props }, ref) => { const bg = transparent ? `bg-transparent` : `bg-primary-700`; const ring = error ? `ring-1 ring-secondary` : ""; - const cn = `w-full py-2 px-4 rounded-8 text-primary-100 placeholder-primary-300 focus:outline-none ${bg} ${ring} ${className} `; + const cn = `w-full py-2 px-4 rounded-8 text-primary-100 placeholder-primary-300 focus:outline-none ${bg} ${ring} ${className || ""} `; return textarea ? (