🔧 chore: bigger img on userselectitem
This commit is contained in:
parent
f77f7c120a
commit
a5b4103515
@ -12,7 +12,7 @@ export const userSelectItemTheme = tv({
|
||||
'cursor-pointer',
|
||||
],
|
||||
content: ['flex', 'gap-3', 'items-center'],
|
||||
img: ['h-5', 'w-5'],
|
||||
img: ['h-10', 'w-10', 'rounded-lg'],
|
||||
selectedIcon: ['h-5', 'w-5', 'text-controls-primary'],
|
||||
label: ['text-sm', 'text-elements-high-em', 'tracking-[-0.006em]'],
|
||||
},
|
||||
|
@ -32,14 +32,10 @@ const UserSelectItem = forwardRef<HTMLLIElement, UserSelectItemProps>(
|
||||
({ className, selected, hovered, option, ...props }, ref) => {
|
||||
const theme = userSelectItemTheme();
|
||||
|
||||
const { value, label, imgSrc } = option;
|
||||
const { value, label, imgSrc = './logo.svg' } = option;
|
||||
|
||||
const renderLeftImage = useMemo(
|
||||
() => (
|
||||
<div className="grid place-items-center w-10 h-10 rounded-lg bg-blue-400">
|
||||
<img src={imgSrc} alt={`${value}-logo`} className={theme.img()} />
|
||||
</div>
|
||||
),
|
||||
() => <img src={imgSrc} alt={`${value}-logo`} className={theme.img()} />,
|
||||
[imgSrc, value],
|
||||
);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user