UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.77 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 StyledArrowUpArrowDownSolid = ({ 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: "M0.549084 8.10536C1.27712 8.775 2.35926 8.66786 2.97158 7.99821L4.7073 6.10179V22.2804C4.7073 23.2339 5.47337 24 6.42158 24C7.3698 24 8.13587 23.2323 8.13587 22.2841V6.10179L9.87158 7.99821C10.5118 8.69518 11.5966 8.74393 12.2941 8.10391C12.9921 7.46373 13.0387 6.37784 12.3996 5.67873L7.68587 0.533036C7.03658 -0.177321 5.80765 -0.177321 5.15783 0.533036L0.491763 5.68071C-0.195933 6.38036 -0.149058 7.46786 0.549084 8.10536ZM10.8359 15.8946C10.1378 16.5348 10.0912 17.6207 10.7304 18.3198L15.3965 23.4675C16.0457 24.1779 17.2747 24.1779 17.9245 23.4675L22.5906 18.3198C23.2302 17.6207 23.1831 16.5354 22.4851 15.8946C21.757 15.2271 20.6744 15.3332 20.0626 16.0001L18.4216 17.8982V1.71589C18.4216 0.767678 17.6555 0 16.7073 0C15.7591 0 14.993 0.767678 14.993 1.71589V17.8945L13.2573 15.998C12.6144 15.3054 11.5323 15.2571 10.8359 15.8946Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledArrowUpArrowDownSolid); const ArrowUpArrowDownSolid = /*#__PURE__*/memo(ForwardRef); export default ArrowUpArrowDownSolid;