You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
604 B
Svelte
28 lines
604 B
Svelte
<script lang="ts">
|
|
export let size: number = 16;
|
|
export let className: string = '';
|
|
export let ariaLabel?: string;
|
|
export let title?: string;
|
|
</script>
|
|
|
|
<svg
|
|
width={size}
|
|
height={size}
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
stroke-width="2"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
class={className}
|
|
role={ariaLabel ? 'img' : undefined}
|
|
aria-label={ariaLabel}
|
|
aria-hidden={ariaLabel ? undefined : 'true'}
|
|
>
|
|
{#if title}<title>{title}</title>{/if}
|
|
<path d="M6 2h12" />
|
|
<path d="M6 22h12" />
|
|
<path d="M8 4l8 8" />
|
|
<path d="M8 20l8-8" />
|
|
</svg>
|