21 lines
474 B
Svelte
21 lines
474 B
Svelte
<script lang="ts">
|
|
import { cn } from '$lib';
|
|
|
|
let className: string | undefined | null = undefined;
|
|
|
|
export { className as class };
|
|
</script>
|
|
|
|
<svg
|
|
class={cn(className)}
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="24"
|
|
height="24"
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
stroke-width="2"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
><circle cx="12" cy="8" r="6" /><path d="M15.477 12.89 17 22l-5-3-5 3 1.523-9.11" /></svg
|
|
>
|