@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
20 lines • 1.01 kB
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const AddLocationIcon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M12 2.5c4.309 0 7.75 3.63 7.75 8.042 0 2.754-1.526 5.473-3.145 7.453-.818 1.002-1.688 1.85-2.457 2.453a7.6 7.6 0 0 1-1.094.73c-.313.166-.688.322-1.054.322s-.741-.156-1.054-.321a7.6 7.6 0 0 1-1.093-.73c-.77-.605-1.64-1.452-2.458-2.454-1.619-1.98-3.145-4.699-3.145-7.453C4.25 6.13 7.691 2.5 12 2.5m0 4.375a.75.75 0 0 0-.75.75V9.5H9.375a.75.75 0 0 0 0 1.5h1.875v1.875a.75.75 0 0 0 1.5 0V11h1.875a.75.75 0 0 0 0-1.5H12.75V7.625a.75.75 0 0 0-.75-.75"
}));
const ForwardRef = forwardRef(AddLocationIcon);
export default ForwardRef;