2026-01-18 15:55:07 +03:00
|
|
|
<!--
|
|
|
|
|
Component: SuggestedFonts
|
|
|
|
|
Renders a list of suggested fonts in a virtualized list to improve performance.
|
|
|
|
|
-->
|
2026-01-18 14:56:25 +03:00
|
|
|
<script lang="ts">
|
|
|
|
|
import {
|
|
|
|
|
FontListItem,
|
|
|
|
|
FontVirtualList,
|
|
|
|
|
fontshareStore,
|
|
|
|
|
} from '$entities/Font';
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<FontVirtualList items={fontshareStore.fonts}>
|
|
|
|
|
{#snippet children({ item: font })}
|
|
|
|
|
<FontListItem {font} />
|
|
|
|
|
{/snippet}
|
|
|
|
|
</FontVirtualList>
|