UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.25 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 StyledSliderSolid = ({ 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: "M16.5 4.5C18.1547 4.5 19.5 5.84531 19.5 7.5V10.5H22.5C23.3297 10.5 24 11.1703 24 12C24 12.8297 23.3297 13.5 22.5 13.5H19.5V16.5C19.5 18.1547 18.1547 19.5 16.5 19.5H15C13.3453 19.5 12 18.1547 12 16.5V7.5C12 5.84531 13.3453 4.5 15 4.5H16.5ZM16.5 7.5H15V16.5H16.5V7.5ZM1.5 10.5H10.5V13.5H1.5C0.671719 13.5 0 12.8297 0 12C0 11.1703 0.671719 10.5 1.5 10.5Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledSliderSolid); const SliderSolid = /*#__PURE__*/memo(ForwardRef); export default SliderSolid;