{#if sectorList?.length !== 0}
Which sectors does ${$etfTicker} invest in? We can break it down into {sectorList?.length} distinct sectors.
{#each showFullStats ? sectorList : sectorList?.slice(0, 3) as item, index}
sectorSelector(item?.industry)} class="shadow-lg bg-[#27272A] w-full rounded-md p-4 mb-5 flex flex-row items-center {index === 0 ? 'mt-4' : ''} {index === 2 && !showFullStats && sectorList?.length > 3 ? 'opacity-[0.5]' : ''}" >
{formatString(item?.industry)} {item?.exposure <= 0.01 ? "< 0.01%" : item?.exposure?.toFixed(2) + "%"}
{/each}
{#if sectorList?.length >= 4} {/if} {:else}

No data available

{/if}