open-webui/src/lib/components/icons/ClockRotateRight.svelte
Timothy Jaeryang Baek f3cd2ffb18 refac
2025-09-13 02:13:26 +04:00

23 lines
678 B
Svelte

<script lang="ts">
export let className = 'w-4 h-4';
export let strokeWidth = '1.5';
</script>
<svg
class={className}
aria-hidden="true"
xmlns="http://www.w3.org/2000/svg"
stroke-width={strokeWidth}
stroke="currentColor"
fill="none"
viewBox="0 0 24 24"
><path d="M12 6L12 12L18 12" stroke-linecap="round" stroke-linejoin="round"></path><path
d="M21.8883 10.5C21.1645 5.68874 17.013 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22C16.1006 22 19.6248 19.5318 21.1679 16"
stroke-linecap="round"
stroke-linejoin="round"
></path><path
d="M17 16H21.4C21.7314 16 22 16.2686 22 16.6V21"
stroke-linecap="round"
stroke-linejoin="round"
></path></svg
>