sliders horizontal icon
Free sliders horizontal SVG icon, MIT licensed. Copy the SVG, install for React/Vue/Angular, or download. Part of the Softicons interface set.
Setup guide
<svg 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">
<line x1="21" y1="8" x2="10" y2="8"/>
<line x1="6" y1="8" x2="3" y2="8"/>
<line x1="21" y1="16" x2="14" y2="16"/>
<line x1="10" y1="16" x2="3" y2="16"/>
<circle cx="8" cy="8" r="2"/>
<circle cx="12" cy="16" r="2"/>
</svg><!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/interface/sliders-horizontal.svg"
width="24" height="24" alt="sliders horizontal icon">
<!-- …or paste the raw SVG from the SVG tab -->import { SlidersHorizontalIcon } from "@softicons/react";
export default function Example() {
return <SlidersHorizontalIcon size={24} strokeWidth={2} />;
}<script setup>
import { SlidersHorizontalIcon } from "@softicons/vue";
</script>
<template>
<SlidersHorizontalIcon :size="24" :stroke-width="2" />
</template>import { SlidersHorizontalIconComponent } from "@softicons/angular";
@Component({
standalone: true,
imports: [SlidersHorizontalIconComponent],
template: `<sliders-horizontal-icon [size]="24" [strokeWidth]="2" />`,
})
export class DemoComponent {}