@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.87 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 StyledArrowsRotateSolid = ({
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.75 0.75C20.9217 0.75 20.25 1.42078 20.25 2.25V5.72297C18.3797 3.11812 15.3469 1.5 12 1.5C7.57031 1.5 3.68391 4.32844 2.32406 8.54062C2.06916 9.32859 2.50205 10.1756 3.29016 10.4288C4.08188 10.6866 4.92516 10.2501 5.17922 9.46359C6.13594 6.49219 8.87813 4.5 12 4.5C14.3672 4.5 16.5122 5.65078 17.8312 7.5H15.75C14.9217 7.5 14.25 8.17078 14.25 9C14.25 9.82922 14.9217 10.5 15.75 10.5H21.75C22.5783 10.5 23.25 9.82922 23.25 9V2.25C23.25 1.42078 22.5797 0.75 21.75 0.75ZM20.7094 13.575C19.9163 13.3201 19.0744 13.7537 18.8203 14.5402C17.8641 17.5078 15.1219 19.5 12 19.5C9.63281 19.5 7.48828 18.3492 6.16875 16.5H8.25C9.07828 16.5 9.75 15.8292 9.75 15C9.75 14.1708 9.07828 13.5 8.25 13.5H2.25C1.42172 13.5 0.75 14.1708 0.75 15V21.75C0.75 22.5792 1.42172 23.25 2.25 23.25C3.07828 23.25 3.75 22.5792 3.75 21.75V18.277C5.62031 20.8828 8.65313 22.5 11.9578 22.5C16.3852 22.5 20.2734 19.6716 21.6328 15.4594C21.9328 14.6719 21.4969 13.7859 20.7094 13.575Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledArrowsRotateSolid);
const ArrowsRotateSolid = /*#__PURE__*/memo(ForwardRef);
export default ArrowsRotateSolid;