@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.34 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 StyledLocationArrowRegular = ({
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: "M2.66678 12.142C1.89589 12.142 1.19089 11.5634 1.03285 10.7598C0.874819 9.95625 1.30768 9.15268 2.06571 8.84197L20.9239 1.12661C21.5614 0.865182 22.2953 1.01304 22.7828 1.50107C23.2703 1.98965 23.4203 2.72357 23.1578 3.36268L15.4436 22.2188C15.1328 22.9795 14.3293 23.408 13.5257 23.2527C12.7221 23.092 12.0953 22.3902 12.0953 21.5705V12.142H2.66678ZM14.715 9.57054V17.2098L20.0025 4.28304L7.07571 9.57054H14.715Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledLocationArrowRegular);
const LocationArrowRegular = /*#__PURE__*/memo(ForwardRef);
export default LocationArrowRegular;