{#each logos as logo}
openPreview(logo)} on:keydown={(e) => (e.key === "Enter" || e.key === " ") && openPreview(logo)} style="cursor:pointer;" > {#if isSvgLogo(logo)}
{:else}
{/if}
{logo.name}
Format:
{logo.format}
{#if logo.colors}
(logo._activeColor = undefined)} on:keydown|stopPropagation={(e) => (e.key === "Enter" || e.key === " ") && (logo._activeColor = undefined)} >
{#each logo.colors as colorObj}
(logo._activeColor = colorObj.value)} on:keydown|stopPropagation={(e) => (e.key === "Enter" || e.key === " ") && (logo._activeColor = colorObj.value)} >
{/each}
{/if}
setSearchQuery(logo.brand)} >
{#if allLogos && allLogos.filter(l => l.brand === logo.brand).length > 1}
{allLogos.filter(l => l.brand === logo.brand).length}
{/if}
{:else}
No logos found matching your search criteria.
{/each}