UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.57 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 StyledArrowRotateLeftSolid = ({ 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: "M22.5 12C22.5 17.7844 17.7891 22.4953 12.0047 22.4953C9.71438 22.4953 7.54266 21.765 5.71406 20.3925C5.05125 19.8961 4.91719 18.9553 5.41448 18.292C5.91183 17.6316 6.85308 17.4966 7.51448 17.9932C8.81948 18.9734 10.3739 19.4904 12.0093 19.4904C16.1391 19.4906 19.5 16.1297 19.5 12C19.5 7.87031 16.1405 4.50937 12.0094 4.50937C9.65156 4.51031 7.43438 5.63906 6.02813 7.5H9C9.82828 7.5 10.5 8.17078 10.5 9C10.5 9.82922 9.82969 10.5 9 10.5H2.25C1.42172 10.5 0.75 9.82922 0.75 9V2.25C0.75 1.42078 1.42172 0.75 2.25 0.75C3.07828 0.75 3.75 1.42078 3.75 2.25V5.54203C5.72344 3.02719 8.72344 1.50516 12.0047 1.50516C17.7891 1.50516 22.5 6.21562 22.5 12Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledArrowRotateLeftSolid); const ArrowRotateLeftSolid = /*#__PURE__*/memo(ForwardRef); export default ArrowRotateLeftSolid;