15 lines
442 B
Svelte
15 lines
442 B
Svelte
<script lang="ts">
|
|
export let isAbsolute = true;
|
|
</script>
|
|
|
|
<svg
|
|
class={isAbsolute
|
|
? 'absolute top-0 left-0 -m-4 h-10 w-10 fill-current text-blue-500'
|
|
: 'mx-auto w-8 h-8 fill-current text-blue-500'}
|
|
viewBox="0 0 128 128"
|
|
>
|
|
<path
|
|
d="M64 0C28.7 0 0 28.7 0 64s28.7 64 64 64c11.2 0 21.7-2.9 30.8-7.9L48.4 55.3v36.6h-6.8V41.8h6.8l50.5 75.8C116.4 106.2 128 86.5 128 64c0-35.3-28.7-64-64-64zm22.1 84.6l-7.5-11.3V41.8h7.5v42.8z"
|
|
/>
|
|
</svg>
|