UNPKG

@astraicons/react

Version:

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

29 lines 1.04 kB
const React = require("react"); const { forwardRef } = require("react"); const LocationSlashIcon = ({ title, titleId, ...props }, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", strokeWidth: 1.5, stroke: "currentColor", "aria-hidden": "true", ref: ref, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M17 5.251C15.73 3.861 13.959 3 12 3c-3.866 0-7 3.358-7 7.5 0 1.839.716 3.705 1.7 5.344m11.783-8.18A7.9 7.9 0 0 1 19 10.5c0 5.142-5.6 10.5-7 10.5-.661 0-2.26-1.196-3.763-3l-.08-.096" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M20.092 3 3 19.966" }), /*#__PURE__*/React.createElement("path", { d: "M14.74 8.78a3 3 0 1 0-4.783 3.417" })); const ForwardRef = forwardRef(LocationSlashIcon); module.exports = ForwardRef;