fix duplicate prop

This commit is contained in:
Brent O'Neill 2025-09-24 14:34:07 -06:00
parent cca68d645c
commit 1b5c75190d

View file

@ -34,9 +34,9 @@ const SelectTrigger = React.forwardRef<
{children} {children}
<SelectPrimitive.Icon asChild> <SelectPrimitive.Icon asChild>
{props.disabled ? ( {props.disabled ? (
<LockIcon className="text-base h-4 w-4 opacity-50" size={20} /> <LockIcon className="text-base h-5 w-5 opacity-50" />
) : ( ) : (
<ChevronsUpDown className="text-base h-4 w-4" size={20} /> <ChevronsUpDown className="text-base h-5 w-5" />
)} )}
</SelectPrimitive.Icon> </SelectPrimitive.Icon>
</SelectPrimitive.Trigger> </SelectPrimitive.Trigger>