hypnagaga/src/components/GraphicBlock/AriaHidden.svelte
2022-08-15 16:55:14 +01:00

14 lines
235 B
Svelte

<script lang="ts">
/**
* Whether to wrap the graphic with an aria hidden tag.
*/
export let hidden: boolean = false;
</script>
{#if hidden}
<div aria-hidden="true">
<slot></slot>
</div>
{:else}
<slot></slot>
{/if}