UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 2 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 StyledArrowsRepeatRegular = ({ 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.875 10.8751C22.2539 10.8751 21.75 11.379 21.75 12.0001C21.75 14.6879 19.5628 16.8751 16.875 16.8751H6.83906L9.79359 13.9206C10.233 13.4811 10.233 12.7693 9.79359 12.3296C9.35414 11.89 8.64234 11.8902 8.20266 12.3296L3.32766 17.2046C2.8882 17.6441 2.8882 18.3559 3.32766 18.7956L8.20266 23.6706C8.42344 23.8923 8.70938 24.0001 9 24.0001C9.29062 24.0001 9.57563 23.8902 9.79547 23.6705C10.2349 23.2311 10.2349 22.5193 9.79547 22.0796L6.83906 19.1251H16.875C20.8036 19.1251 24 15.9287 24 12.0001C24 11.3767 23.4984 10.8751 22.875 10.8751ZM7.125 7.12511H17.1609L14.2064 10.0796C13.767 10.5191 13.767 11.2309 14.2064 11.6706C14.4234 11.8923 14.7094 12.0001 15 12.0001C15.2906 12.0001 15.5756 11.8902 15.7955 11.6705L20.6705 6.79553C21.1099 6.35608 21.1099 5.64428 20.6705 5.20459L15.7955 0.32959C15.356 -0.109863 14.6442 -0.109863 14.2045 0.32959C13.7648 0.769043 13.7651 1.48084 14.2045 1.92053L17.1609 4.87511H7.125C3.19641 4.87511 0 8.07198 0 11.9579C0 12.6189 0.503906 13.1251 1.125 13.1251C1.74609 13.1251 2.25 12.6235 2.25 12.0001C2.25 9.31417 4.43719 7.12511 7.125 7.12511Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledArrowsRepeatRegular); const ArrowsRepeatRegular = /*#__PURE__*/memo(ForwardRef); export default ArrowsRepeatRegular;