@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.94 kB
JavaScript
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 StyledArrowsRotateRegular = ({
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: "M21.3141 13.5047C20.715 13.3289 20.0925 13.6732 19.9195 14.2692C18.9047 17.8078 15.6469 20.25 11.9578 20.25C8.83921 20.25 6.01405 18.4556 4.62186 15.75H9.32812C9.94921 15.75 10.4531 15.2461 10.4531 14.625C10.4531 14.0039 9.99374 13.5 9.3703 13.5H1.8703C1.24921 13.5 0.7453 14.0039 0.7453 14.625V22.125C0.7453 22.7461 1.24921 23.25 1.8703 23.25C2.49139 23.25 2.9953 22.7461 2.9953 22.125V17.3391C4.86093 20.4562 8.25468 22.5 11.9578 22.5C16.5984 22.5 20.7422 19.3917 22.0406 14.9391C22.2562 14.3016 21.9094 13.7203 21.3141 13.5047ZM22.125 0.75C21.5062 0.75 21 1.25391 21 1.875V6.66094C19.1391 3.54141 15.7406 1.5 12 1.5C7.35936 1.5 3.21233 4.60828 1.91764 9.06094C1.74327 9.65625 2.08593 10.2797 2.68218 10.4531C3.28405 10.6304 3.90514 10.2832 4.07671 9.68859C5.0953 6.19219 8.35311 3.75 12 3.75C15.1186 3.75 17.9437 5.54437 19.3359 8.25H14.625C14.0062 8.25 13.5 8.75625 13.5 9.375C13.5 9.99375 14.0062 10.5 14.625 10.5H22.125C22.7461 10.5 23.25 9.99609 23.25 9.375V1.875C23.25 1.25391 22.7484 0.75 22.125 0.75Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledArrowsRotateRegular);
const ArrowsRotateRegular = /*#__PURE__*/memo(ForwardRef);
export default ArrowsRotateRegular;