Removes icon.

This commit is contained in:
Len 2023-11-02 10:30:51 +01:00
parent 532b339893
commit cf515334ca

View file

@ -420,17 +420,12 @@ function handleMouseMove(){
label: ( label: (
<div className="flex w-full flex-shrink-0 items-center justify-between gap-12 whitespace-nowrap"> <div className="flex w-full flex-shrink-0 items-center justify-between gap-12 whitespace-nowrap">
<span <span
className={`${ className={`ml-2 ${
cssSelector?.name === x.toLowerCase() cssSelector?.name === x.toLowerCase()
? 'ml-2 font-semibold text-black' ? 'font-semibold text-black'
: 'ml-2' : ''
}`} }`}
> >
{cssSelector?.name === x.toLowerCase() ? (
<Icon icon="codicon:chevron-right" fontSize={14} />
) : (
<></>
)}{' '}
{x} {x}
</span> </span>
</div> </div>