open-webui/src/lib/components/icons/Knobs.svelte

25 lines
772 B
Svelte
Raw Normal View History

2025-09-26 21:55:38 +00:00
<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}
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
>
<!-- Top horizontal knob (left biased) -->
2025-09-26 22:49:42 +00:00
<line x1="2" y1="7.5" x2="6" y2="7.5" stroke-linecap="round" />
<line x1="12" y1="7.5" x2="22" y2="7.5" stroke-linecap="round" />
<circle cx="9" cy="7.5" r="3" stroke="currentColor" fill="none" />
2025-09-26 21:55:38 +00:00
<!-- Bottom horizontal knob (right biased) -->
2025-09-26 22:49:42 +00:00
<line x1="2" y1="16.5" x2="12" y2="16.5" stroke-linecap="round" />
<line x1="18" y1="16.5" x2="22" y2="16.5" stroke-linecap="round" />
<circle cx="15" cy="16.5" r="3" stroke="currentColor" fill="none" />
2025-09-26 21:55:38 +00:00
</svg>