aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js/bus-stop.js
diff options
context:
space:
mode:
Diffstat (limited to 'icons-react/icons-js/bus-stop.js')
-rw-r--r--icons-react/icons-js/bus-stop.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/icons-react/icons-js/bus-stop.js b/icons-react/icons-js/bus-stop.js
new file mode 100644
index 00000000..aa42d492
--- /dev/null
+++ b/icons-react/icons-js/bus-stop.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconBusStop({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-bus-stop" 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" /><rect x={3} y={3} width={4} height={6} rx={1} /><circle cx={18} cy={17} r={2} /><path d="M10 5h7c2.761 0 5 3.134 5 7v5h-2" /><path d="M16 17h-8" /><path d="M16 5l1.5 7h4.5" /><path d="M9.5 10h7.5" /><path d="M12 5v5" /><path d="M5 9v11" /></svg>;
+}
+
+export default IconBusStop; \ No newline at end of file