@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.43 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 StyledSliderRegular = ({
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.875H22.875C23.4984 10.875 24 11.3766 24 12C24 12.6234 23.4984 13.125 22.875 13.125H19.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 6.75H15C14.5875 6.75 14.25 7.0875 14.25 7.5V16.5C14.25 16.9125 14.5875 17.25 15 17.25H16.5C16.9125 17.25 17.25 16.9125 17.25 16.5V7.5C17.25 7.0875 16.9125 6.75 16.5 6.75ZM1.125 10.875H10.5V13.125H1.125C0.503906 13.125 0 12.6234 0 12C0 11.3766 0.503906 10.875 1.125 10.875Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledSliderRegular);
const SliderRegular = /*#__PURE__*/memo(ForwardRef);
export default SliderRegular;