UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.48 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 StyledArrowTrendDownSolid = ({ 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: "M19.4458 15.6662L13.3333 9.55375L8.94167 13.9412C8.42083 14.4621 7.57917 14.4621 7.05833 13.9412L0.3905 7.27458C-0.130167 6.75375 -0.130167 5.91208 0.3905 5.39125C0.91125 4.86958 1.75542 4.86958 2.27625 5.39125L7.9625 11.1121L12.3917 6.72458C12.9125 6.20375 13.7542 6.20375 14.275 6.72458L21.3333 13.7787V10.2954C21.3333 9.59541 21.9292 8.96208 22.6667 8.96208C23.4042 8.96208 24 9.59541 24 10.2954V16.9996C24 17.7371 23.4042 18.3329 22.6667 18.3329H16C15.2625 18.3329 14.6667 17.7371 14.6667 16.9996C14.6667 16.2621 15.2625 15.6662 16 15.6662H19.4458Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledArrowTrendDownSolid); const ArrowTrendDownSolid = /*#__PURE__*/memo(ForwardRef); export default ArrowTrendDownSolid;