sliders icon
sliders-outline from Dither Icons by Vijay K Singh · Outline · MIT Free for personal and commercial use.
- Name
- sliders-outline
- Set
- Dither Icons
- Style
- Outline
- Viewbox
- 24×24
- License
- MIT
2 other variants in Dither Icons
The same icon in other sets
All sliders icons →Use the sliders icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="currentColor"><defs><mask id="svgID64" width="72" height="72" x="-24" y="-24" maskUnits="userSpaceOnUse"><rect width="72" height="72" x="-24" y="-24" fill="#fff"/><path fill="#000" stroke="#000" stroke-width=".4" d="M6.2 3.25h1.6a.9.9 0 0 1 .9.9v2.7a.9.9 0 0 1-.9.9h-1.6a.9.9 0 0 1-.9-.9v-2.7a.9.9 0 0 1 .9-.9Z"/><path fill="#000" stroke="#000" stroke-width=".4" d="M13.7 9.75h1.6a.9.9 0 0 1 .9.9v2.7a.9.9 0 0 1-.9.9h-1.6a.9.9 0 0 1-.9-.9v-2.7a.9.9 0 0 1 .9-.9Z"/><path fill="#000" stroke="#000" stroke-width=".4" d="M9.2 16.25h1.6a.9.9 0 0 1 .9.9v2.7a.9.9 0 0 1-.9.9h-1.6a.9.9 0 0 1-.9-.9v-2.7a.9.9 0 0 1 .9-.9Z"/></mask></defs><g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.15" mask="url(#svgID64)"><path d="M3.5 5.5h17M3.5 12h17M3.5 18.5h17" opacity=".32"/><path d="M3.5 12H14.5" opacity=".75"/></g><rect width="2.4" height="3.5" x="5.8" y="3.75" fill="none" stroke="currentColor" opacity=".8" rx=".6"/><rect width="2.4" height="3.5" x="13.3" y="10.25" fill="none" stroke="currentColor" rx=".6"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width=".55" d="M13.65 10.6v2.8" opacity="0"/><rect width="2.4" height="3.5" x="8.8" y="16.75" fill="none" stroke="currentColor" opacity=".8" rx=".6"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width=".65" d="M10 8.3v.8" opacity="0"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width=".65" d="M10 14.9v.8" opacity="0"/></g></svg>
React
import type { SVGProps } from "react";
export function DitherSlidersOutline(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="currentColor"><defs><mask id="svgID64" width="72" height="72" x="-24" y="-24" maskUnits="userSpaceOnUse"><rect width="72" height="72" x="-24" y="-24" fill="#fff"/><path fill="#000" stroke="#000" strokeWidth=".4" d="M6.2 3.25h1.6a.9.9 0 0 1 .9.9v2.7a.9.9 0 0 1-.9.9h-1.6a.9.9 0 0 1-.9-.9v-2.7a.9.9 0 0 1 .9-.9Z"/><path fill="#000" stroke="#000" strokeWidth=".4" d="M13.7 9.75h1.6a.9.9 0 0 1 .9.9v2.7a.9.9 0 0 1-.9.9h-1.6a.9.9 0 0 1-.9-.9v-2.7a.9.9 0 0 1 .9-.9Z"/><path fill="#000" stroke="#000" strokeWidth=".4" d="M9.2 16.25h1.6a.9.9 0 0 1 .9.9v2.7a.9.9 0 0 1-.9.9h-1.6a.9.9 0 0 1-.9-.9v-2.7a.9.9 0 0 1 .9-.9Z"/></mask></defs><g fill="none" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round" strokeWidth="1.15" mask="url(#svgID64)"><path d="M3.5 5.5h17M3.5 12h17M3.5 18.5h17" opacity=".32"/><path d="M3.5 12H14.5" opacity=".75"/></g><rect width="2.4" height="3.5" x="5.8" y="3.75" fill="none" stroke="currentColor" opacity=".8" rx=".6"/><rect width="2.4" height="3.5" x="13.3" y="10.25" fill="none" stroke="currentColor" rx=".6"/><path fill="none" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round" strokeWidth=".55" d="M13.65 10.6v2.8" opacity="0"/><rect width="2.4" height="3.5" x="8.8" y="16.75" fill="none" stroke="currentColor" opacity=".8" rx=".6"/><path fill="none" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round" strokeWidth=".65" d="M10 8.3v.8" opacity="0"/><path fill="none" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round" strokeWidth=".65" d="M10 14.9v.8" opacity="0"/></g></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="currentColor"><defs><mask id="svgID64" width="72" height="72" x="-24" y="-24" maskUnits="userSpaceOnUse"><rect width="72" height="72" x="-24" y="-24" fill="#fff"/><path fill="#000" stroke="#000" stroke-width=".4" d="M6.2 3.25h1.6a.9.9 0 0 1 .9.9v2.7a.9.9 0 0 1-.9.9h-1.6a.9.9 0 0 1-.9-.9v-2.7a.9.9 0 0 1 .9-.9Z"/><path fill="#000" stroke="#000" stroke-width=".4" d="M13.7 9.75h1.6a.9.9 0 0 1 .9.9v2.7a.9.9 0 0 1-.9.9h-1.6a.9.9 0 0 1-.9-.9v-2.7a.9.9 0 0 1 .9-.9Z"/><path fill="#000" stroke="#000" stroke-width=".4" d="M9.2 16.25h1.6a.9.9 0 0 1 .9.9v2.7a.9.9 0 0 1-.9.9h-1.6a.9.9 0 0 1-.9-.9v-2.7a.9.9 0 0 1 .9-.9Z"/></mask></defs><g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.15" mask="url(#svgID64)"><path d="M3.5 5.5h17M3.5 12h17M3.5 18.5h17" opacity=".32"/><path d="M3.5 12H14.5" opacity=".75"/></g><rect width="2.4" height="3.5" x="5.8" y="3.75" fill="none" stroke="currentColor" opacity=".8" rx=".6"/><rect width="2.4" height="3.5" x="13.3" y="10.25" fill="none" stroke="currentColor" rx=".6"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width=".55" d="M13.65 10.6v2.8" opacity="0"/><rect width="2.4" height="3.5" x="8.8" y="16.75" fill="none" stroke="currentColor" opacity=".8" rx=".6"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width=".65" d="M10 8.3v.8" opacity="0"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width=".65" d="M10 14.9v.8" opacity="0"/></g></svg> </template>
CSS
.icon-sliders-outline {
width: 24px;
height: 24px;
background-color: currentColor;
-webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cg%20fill%3D%22currentColor%22%3E%3Cdefs%3E%3Cmask%20id%3D%22svgID64%22%20width%3D%2272%22%20height%3D%2272%22%20x%3D%22-24%22%20y%3D%22-24%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Crect%20width%3D%2272%22%20height%3D%2272%22%20x%3D%22-24%22%20y%3D%22-24%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20fill%3D%22%23000%22%20stroke%3D%22%23000%22%20stroke-width%3D%22.4%22%20d%3D%22M6.2%203.25h1.6a.9.9%200%200%201%20.9.9v2.7a.9.9%200%200%201-.9.9h-1.6a.9.9%200%200%201-.9-.9v-2.7a.9.9%200%200%201%20.9-.9Z%22%2F%3E%3Cpath%20fill%3D%22%23000%22%20stroke%3D%22%23000%22%20stroke-width%3D%22.4%22%20d%3D%22M13.7%209.75h1.6a.9.9%200%200%201%20.9.9v2.7a.9.9%200%200%201-.9.9h-1.6a.9.9%200%200%201-.9-.9v-2.7a.9.9%200%200%201%20.9-.9Z%22%2F%3E%3Cpath%20fill%3D%22%23000%22%20stroke%3D%22%23000%22%20stroke-width%3D%22.4%22%20d%3D%22M9.2%2016.25h1.6a.9.9%200%200%201%20.9.9v2.7a.9.9%200%200%201-.9.9h-1.6a.9.9%200%200%201-.9-.9v-2.7a.9.9%200%200%201%20.9-.9Z%22%2F%3E%3C%2Fmask%3E%3C%2Fdefs%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.15%22%20mask%3D%22url(%23svgID64)%22%3E%3Cpath%20d%3D%22M3.5%205.5h17M3.5%2012h17M3.5%2018.5h17%22%20opacity%3D%22.32%22%2F%3E%3Cpath%20d%3D%22M3.5%2012H14.5%22%20opacity%3D%22.75%22%2F%3E%3C%2Fg%3E%3Crect%20width%3D%222.4%22%20height%3D%223.5%22%20x%3D%225.8%22%20y%3D%223.75%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20opacity%3D%22.8%22%20rx%3D%22.6%22%2F%3E%3Crect%20width%3D%222.4%22%20height%3D%223.5%22%20x%3D%2213.3%22%20y%3D%2210.25%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20rx%3D%22.6%22%2F%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%22.55%22%20d%3D%22M13.65%2010.6v2.8%22%20opacity%3D%220%22%2F%3E%3Crect%20width%3D%222.4%22%20height%3D%223.5%22%20x%3D%228.8%22%20y%3D%2216.75%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20opacity%3D%22.8%22%20rx%3D%22.6%22%2F%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%22.65%22%20d%3D%22M10%208.3v.8%22%20opacity%3D%220%22%2F%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%22.65%22%20d%3D%22M10%2014.9v.8%22%20opacity%3D%220%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center / contain;
mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cg%20fill%3D%22currentColor%22%3E%3Cdefs%3E%3Cmask%20id%3D%22svgID64%22%20width%3D%2272%22%20height%3D%2272%22%20x%3D%22-24%22%20y%3D%22-24%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Crect%20width%3D%2272%22%20height%3D%2272%22%20x%3D%22-24%22%20y%3D%22-24%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20fill%3D%22%23000%22%20stroke%3D%22%23000%22%20stroke-width%3D%22.4%22%20d%3D%22M6.2%203.25h1.6a.9.9%200%200%201%20.9.9v2.7a.9.9%200%200%201-.9.9h-1.6a.9.9%200%200%201-.9-.9v-2.7a.9.9%200%200%201%20.9-.9Z%22%2F%3E%3Cpath%20fill%3D%22%23000%22%20stroke%3D%22%23000%22%20stroke-width%3D%22.4%22%20d%3D%22M13.7%209.75h1.6a.9.9%200%200%201%20.9.9v2.7a.9.9%200%200%201-.9.9h-1.6a.9.9%200%200%201-.9-.9v-2.7a.9.9%200%200%201%20.9-.9Z%22%2F%3E%3Cpath%20fill%3D%22%23000%22%20stroke%3D%22%23000%22%20stroke-width%3D%22.4%22%20d%3D%22M9.2%2016.25h1.6a.9.9%200%200%201%20.9.9v2.7a.9.9%200%200%201-.9.9h-1.6a.9.9%200%200%201-.9-.9v-2.7a.9.9%200%200%201%20.9-.9Z%22%2F%3E%3C%2Fmask%3E%3C%2Fdefs%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.15%22%20mask%3D%22url(%23svgID64)%22%3E%3Cpath%20d%3D%22M3.5%205.5h17M3.5%2012h17M3.5%2018.5h17%22%20opacity%3D%22.32%22%2F%3E%3Cpath%20d%3D%22M3.5%2012H14.5%22%20opacity%3D%22.75%22%2F%3E%3C%2Fg%3E%3Crect%20width%3D%222.4%22%20height%3D%223.5%22%20x%3D%225.8%22%20y%3D%223.75%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20opacity%3D%22.8%22%20rx%3D%22.6%22%2F%3E%3Crect%20width%3D%222.4%22%20height%3D%223.5%22%20x%3D%2213.3%22%20y%3D%2210.25%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20rx%3D%22.6%22%2F%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%22.55%22%20d%3D%22M13.65%2010.6v2.8%22%20opacity%3D%220%22%2F%3E%3Crect%20width%3D%222.4%22%20height%3D%223.5%22%20x%3D%228.8%22%20y%3D%2216.75%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20opacity%3D%22.8%22%20rx%3D%22.6%22%2F%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%22.65%22%20d%3D%22M10%208.3v.8%22%20opacity%3D%220%22%2F%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%22.65%22%20d%3D%22M10%2014.9v.8%22%20opacity%3D%220%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/dither/sliders-outline.svg?color=%231a73e8&size=48