mirror of
https://codeberg.org/PLG-Development/PLG-MuDiCS
synced 2026-07-06 17:07:08 +00:00
26 lines
700 B
Svelte
26 lines
700 B
Svelte
<script lang="ts">
|
|
let { className = '' }: { className?: string } = $props();
|
|
</script>
|
|
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="24"
|
|
height="24"
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
stroke-width="2.7"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
class="{className} lucide lucide-refresh-ccw-dot-icon lucide-refresh-ccw-dot"
|
|
>
|
|
<path d="M21 12a9 9 0 0 0-9-9 9.75 9.75 0 0 0-6.74 2.74L3 8" />
|
|
<path d="M3 3v5h5" />
|
|
<path d="M3 12a9 9 0 0 0 9 9 9.75 9.75 0 0 0 6.74-2.74L21 16" />
|
|
<path d="M16 16h5v5" />
|
|
<path
|
|
d="M15.033 9.44a.647.647 0 0 1 0 1.12l-4.065 2.352a.645.645 0 0 1-.968-.56V7.648a.645.645 0 0 1 .967-.56z"
|
|
transform="translate(0,2.0)"
|
|
/>
|
|
</svg>
|