UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 2.47 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 StyledArrowDown19Regular = ({ 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 8.20775C15.8789 8.20775 15.375 8.71166 15.375 9.33275C15.375 9.95385 15.8789 10.4582 16.4578 10.4582L20.25 10.4578C20.8711 10.4578 21.375 9.95385 21.375 9.33275C21.375 8.71166 20.8711 8.20775 20.25 8.20775H19.5V2.58275C19.5 2.177 19.2817 1.80369 18.9286 1.604C18.5756 1.40188 18.142 1.4121 17.7961 1.61719L15.9211 2.74219C15.3877 3.063 15.2152 3.75281 15.5344 4.28625C15.8537 4.81781 16.5422 4.99219 17.0784 4.67297L17.2498 4.56895V8.20786H16.5V8.20775ZM18.375 11.9999C16.0969 11.9999 14.25 13.8468 14.25 16.1249C14.25 18.096 15.6352 19.739 17.4834 20.1473L16.755 21.0379C16.361 21.5184 16.4313 22.2276 16.9132 22.6199C17.1234 22.7906 17.3719 22.8749 17.625 22.8749C17.9502 22.8749 18.2737 22.7343 18.495 22.4619C21.8016 18.3796 22.5 17.9296 22.5 16.1249C22.5 13.8468 20.6531 11.9999 18.375 11.9999ZM19.7484 17.3812L19.6808 17.4638C19.3406 17.7937 18.8812 17.9999 18.375 17.9999C17.3409 17.9999 16.5 17.1585 16.5 16.1249C16.5 15.0913 17.3391 14.2499 18.375 14.2499C19.4109 14.2499 20.25 15.0913 20.25 16.1249C20.25 16.6124 20.0531 17.0484 19.7484 17.3812ZM9.67499 15.7078L7.12499 18.5109V2.62588C7.12499 2.00432 6.62343 1.49994 5.99999 1.49994C5.37656 1.49994 4.87499 2.00432 4.87499 2.62588V18.5118L2.3264 15.7485C2.1052 15.5083 1.80328 15.3867 1.50046 15.3867C1.22803 15.3867 0.953901 15.4849 0.737339 15.6855C0.280307 16.1063 0.252651 16.819 0.674339 17.2765L5.13215 22.1562C5.55693 22.6165 6.35981 22.6165 6.78449 22.1562L11.2423 17.2765C11.6642 16.8191 11.6363 16.1065 11.1793 15.6855C10.8047 15.2578 10.0922 15.2906 9.67499 15.7078Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledArrowDown19Regular); const ArrowDown19Regular = /*#__PURE__*/memo(ForwardRef); export default ArrowDown19Regular;