@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
27 lines • 1.02 kB
JavaScript
import * as React from "react";
import { forwardRef } from "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: "M18.483 7.665a8 8 0 0 1 .266.835c.164.637.252 1.307.252 2 0 5.142-5.6 10.5-7 10.5-.662 0-2.26-1.196-3.764-3l-.079-.096"
}), /*#__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.344M20.092 3l-5.511 5.47M3 19.967 14.58 8.471m-4.623 3.726A3 3 0 1 1 14.58 8.47",
opacity: 0.4
}));
const ForwardRef = forwardRef(LocationSlashIcon);
export default ForwardRef;