UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.61 kB
import React, { forwardRef, memo } from "react"; import { AccessibleIcon } from "../accessible-icon"; import { StyledSvg, StyledPath } from "../styles"; import { jsx as _jsx } from "react/jsx-runtime"; const StyledSlidersSimpleSolid = ({ label, color = "#000000", className = "", css = {}, viewBox = "0 0 24 24" }, ref) => { return /*#__PURE__*/_jsx(AccessibleIcon, { label: label, children: /*#__PURE__*/_jsx(StyledSvg, { className: className, css: css, viewBox: viewBox, xmlns: "http://www.w3.org/2000/svg", xmlnsXlink: "http://www.w3.org/1999/xlink", ref: ref, children: /*#__PURE__*/_jsx(StyledPath, { css: { fill: `${color}` }, d: "M22.5 15C23.3297 15 24 15.6703 24 16.5C24 17.3297 23.3297 18 22.5 18H8.74219C8.12813 19.7484 6.45937 21 4.5 21C2.01469 21 1.40625e-05 18.9844 1.40625e-05 16.5C1.40625e-05 13.9734 2.01469 12 4.5 12C6.45937 12 8.12813 13.2516 8.74219 15H22.5ZM3 16.5C3 17.3297 3.67172 18 4.5 18C5.32969 18 6 17.3297 6 16.5C6 15.6703 5.32969 15 4.5 15C3.67172 15 3 15.6703 3 16.5ZM15.2578 6C15.8719 4.25203 17.5406 3 19.5 3C21.9844 3 24 4.97344 24 7.5C24 9.98438 21.9844 12 19.5 12C17.5406 12 15.8719 10.7484 15.2578 9H1.5C0.671719 9 0 8.32969 0 7.5C0 6.67031 0.671719 6 1.5 6H15.2578ZM19.5 9C20.3297 9 21 8.32969 21 7.5C21 6.67031 20.3297 6 19.5 6C18.6703 6 18 6.67031 18 7.5C18 8.32969 18.6703 9 19.5 9Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledSlidersSimpleSolid); const SlidersSimpleSolid = /*#__PURE__*/memo(ForwardRef); export default SlidersSimpleSolid;