@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
28 lines • 1.51 kB
JavaScript
const React = require("react");
function LocationSlashIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__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: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M20 10.333C20 16.047 13.6 22 12 22m8-11.667q0-.383-.032-.756m.032.756-.032-.756M12 22a1 1 0 0 1-.135-.012M12 22l-.135-.012m8.103-12.41a9 9 0 0 0-.177-1.143m0 0a9 9 0 0 0-.162-.617m.162.617-.162-.617m0 0L19.5 7.5m-7.635 14.488a1.4 1.4 0 0 1-.21-.054m0 0a3 3 0 0 1-.387-.164m.387.164-.387-.164m0 0a5 5 0 0 1-.35-.197m0 0a7 7 0 0 1-.324-.21m.323.21-.323-.21m0 0q-.248-.17-.515-.38m0 0a13 13 0 0 1-.444-.364m.444.364-.444-.364m0 0a16 16 0 0 1-.73-.668m0 0a18 18 0 0 1-.349-.347m.348.347-.348-.347m0 0q-.31-.316-.62-.665m-2.55-3.642c.125.238.477.972.614 1.203zm0 0C4.558 13.729 4 12.02 4 10.333 4 5.731 7.582 2 12 2c2.15 0 4.103.884 5.54 2.322l.178.178"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M15 8.031A3.5 3.5 0 0 0 12.516 7 3.51 3.51 0 0 0 9 10.516c0 .972.398 1.851 1.031 2.484M21 2 3 20"
}));
}
const ForwardRef = React.forwardRef(LocationSlashIcon);
module.exports = ForwardRef;