This commit is contained in:
Mathew Pareles 2025-03-12 00:11:14 -07:00
parent 967f7dc85e
commit 6d5d4c34d7

View file

@ -27,7 +27,7 @@ export const IconShell1 = ({ onClick, title, Icon, disabled, className }: IconBu
disabled={disabled}
onClick={onClick}
className={`
size-6
size-[18px]
flex items-center justify-center
text-sm bg-void-bg-3 text-void-fg-1
hover:brightness-110
@ -36,7 +36,7 @@ export const IconShell1 = ({ onClick, title, Icon, disabled, className }: IconBu
${className}
`}
>
<Icon size={14} />
<Icon size={12} />
</button>
)
@ -47,7 +47,7 @@ export const IconShell2 = ({ onClick, title, Icon, disabled, className }: IconBu
disabled={disabled}
onClick={onClick}
className={`
size-6
size-[18px]
flex items-center justify-center
text-sm
hover:opacity-80
@ -55,7 +55,7 @@ export const IconShell2 = ({ onClick, title, Icon, disabled, className }: IconBu
${className}
`}
>
<Icon size={14} />
<Icon size={12} />
</button>
)