UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

22 lines 957 B
import * as React from "react"; import { forwardRef } from "react"; const LocationIcon = ({ 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", { fillRule: "evenodd", d: "M12 2.25c-4.328 0-7.75 3.743-7.75 8.25 0 2.819 1.52 5.608 3.138 7.645.818 1.03 1.687 1.9 2.457 2.521.383.31.755.568 1.093.752.312.17.691.332 1.062.332.37 0 .75-.162 1.062-.332.338-.184.71-.442 1.093-.752.77-.62 1.64-1.492 2.457-2.521 1.619-2.037 3.138-4.826 3.138-7.645 0-4.507-3.422-8.25-7.75-8.25m0 4a3.75 3.75 0 1 0 0 7.5 3.75 3.75 0 0 0 0-7.5", clipRule: "evenodd" })); const ForwardRef = forwardRef(LocationIcon); export default ForwardRef;