aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js/location-off.js
diff options
context:
space:
mode:
Diffstat (limited to 'icons-react/icons-js/location-off.js')
-rw-r--r--icons-react/icons-js/location-off.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/icons-react/icons-js/location-off.js b/icons-react/icons-js/location-off.js
new file mode 100644
index 00000000..b191d775
--- /dev/null
+++ b/icons-react/icons-js/location-off.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconLocationOff({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-location-off" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M10.72 6.712l10.28 -3.712l-3.724 10.313m-1.056 2.925l-1.72 4.762a0.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a0.55 .55 0 0 1 0 -1l4.775 -1.724" /><path d="M3 3l18 18" /></svg>;
+}
+
+export default IconLocationOff; \ No newline at end of file