2 import { _ } from 'svelte-i18n';
3 import { getGlyphHash } from '$lib/utils/glyph_hash';
5 export let uuid: string;
9 class="inline-block w-12 h-12 mt-1 bg-white border border-black border-solid p-0.5 box-content glyphicon"
11 aria-label={$_('glyph.title')}
12 title={$_('glyph.title')}
14 {#each getGlyphHash(uuid) as fragment}
16 class="block text-2xl float-left w-6 h-6 text-center leading-6 {fragment.glyph}"
17 style="color: {fragment.color} "
26 border: 1px solid black;