UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.58 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 StyledArrowRotateLeftRegular = ({ 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: "M1.875 0.75C2.49609 0.75 3 1.25391 3 1.875V6.66094C4.86094 3.54234 8.26406 1.50516 12.0047 1.50516C17.7938 1.50516 22.5 6.21094 22.5 12C22.5 17.7891 17.7938 22.4953 12.0047 22.4953C9.55266 22.4953 7.1625 21.6361 5.27812 20.0686C4.80047 19.6702 4.73625 18.9614 5.13459 18.4837C5.53303 18.0047 6.24366 17.9419 6.71944 18.3402C8.19844 19.5703 10.0734 20.25 12 20.25C16.5483 20.25 20.25 16.5483 20.25 12C20.25 7.45172 16.5469 3.75 12 3.75C8.88094 3.75 6.05625 5.54437 4.66406 8.25H9.375C9.99844 8.25 10.5 8.75625 10.5 9.375C10.5 9.99375 9.99844 10.5 9.375 10.5H1.875C1.25391 10.5 0.75 9.99844 0.75 9.375V1.875C0.75 1.25391 1.25391 0.75 1.875 0.75Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledArrowRotateLeftRegular); const ArrowRotateLeftRegular = /*#__PURE__*/memo(ForwardRef); export default ArrowRotateLeftRegular;