@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.74 kB
JavaScript
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 StyledSlidersSimpleRegular = ({
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.875 16.125C23.4984 16.125 24 16.6266 24 17.25C24 17.8734 23.4984 18.375 22.875 18.375H7.32656C6.84844 19.8984 5.42812 21 3.75 21C1.67906 21 0 19.3219 0 17.25C0 15.1781 1.67906 13.5 3.75 13.5C5.42812 13.5 6.84844 14.6016 7.32656 16.125H22.875ZM2.25 17.25C2.25 18.0797 2.92172 18.75 3.75 18.75C4.57828 18.75 5.25 18.0797 5.25 17.25C5.25 16.4203 4.57828 15.75 3.75 15.75C2.92172 15.75 2.25 16.4203 2.25 17.25ZM16.6734 5.625C17.1516 4.10344 18.5719 3 20.25 3C22.3219 3 24 4.67906 24 6.75C24 8.82188 22.3219 10.5 20.25 10.5C18.5719 10.5 17.1516 9.39844 16.6734 7.875H1.125C0.503906 7.875 0 7.37344 0 6.75C0 6.12656 0.503906 5.625 1.125 5.625H16.6734ZM20.25 8.25C21.0797 8.25 21.75 7.57969 21.75 6.75C21.75 5.92031 21.0797 5.25 20.25 5.25C19.4203 5.25 18.75 5.92031 18.75 6.75C18.75 7.57969 19.4203 8.25 20.25 8.25Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledSlidersSimpleRegular);
const SlidersSimpleRegular = /*#__PURE__*/memo(ForwardRef);
export default SlidersSimpleRegular;