UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 2.26 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 StyledArrowDownZARegular = ({ 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: "M15.3328 3.75H18.2831L14.4891 8.68125C14.2255 9.02109 14.1772 9.48094 14.366 9.86625C14.555 10.253 14.9477 10.4977 15.3767 10.4977H20.5845C21.2056 10.4977 21.6673 9.99375 21.6673 9.37266C21.6673 8.75156 21.1634 8.24766 20.5845 8.24766H17.6766L21.5142 3.31641C21.7779 2.97656 21.8262 2.51672 21.6373 2.13141C21.4453 1.74469 21.0516 1.5 20.5828 1.5H15.375C14.7539 1.5 14.2922 2.00391 14.2922 2.625C14.2922 3.24609 14.7516 3.75 15.3328 3.75ZM22.3828 20.8734L19.05 14.1234C18.6692 13.3594 17.4183 13.3594 17.0372 14.1234L13.7044 20.8734C13.426 21.4284 13.6516 22.1039 14.2083 22.3823C14.7661 22.6607 15.4388 22.4365 15.7172 21.8784L15.9684 21.3759H20.2031L20.4543 21.8784C20.6521 22.274 21.0491 22.5009 21.4621 22.5009C21.6306 22.5009 21.8019 22.4629 21.9632 22.3823C22.4344 22.1016 22.6594 21.4266 22.3828 20.8734ZM17.0063 19.0828L17.9986 17.0981L18.9909 19.0828H17.0063ZM9.67501 15.7078L7.12501 18.5109V2.62594C7.12501 2.00391 6.6211 1.5 6.00001 1.5C5.37892 1.5 4.87501 2.00438 4.87501 2.62594V18.5119L2.32642 15.7486C2.10521 15.5084 1.80329 15.3868 1.50048 15.3868C1.22804 15.3868 0.953916 15.4849 0.737354 15.6856C0.280323 16.1064 0.252666 16.819 0.674354 17.2765L5.13217 22.1562C5.55695 22.6165 6.35982 22.6165 6.78451 22.1562L11.2423 17.2765C11.6642 16.8191 11.6364 16.1065 11.1793 15.6856C10.8047 15.2578 10.0922 15.2906 9.67501 15.7078Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledArrowDownZARegular); const ArrowDownZARegular = /*#__PURE__*/memo(ForwardRef); export default ArrowDownZARegular;