aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js/charging-pile.js
diff options
context:
space:
mode:
Diffstat (limited to 'icons-react/icons-js/charging-pile.js')
-rw-r--r--icons-react/icons-js/charging-pile.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/icons-react/icons-js/charging-pile.js b/icons-react/icons-js/charging-pile.js
new file mode 100644
index 00000000..254659a4
--- /dev/null
+++ b/icons-react/icons-js/charging-pile.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconChargingPile({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-charging-pile" 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" /><line x1={18} y1={7} x2={17} y2={8} /><path d="M14 11h1a2 2 0 0 1 2 2v3a1.5 1.5 0 0 0 3 0v-7l-3 -3" /><path d="M4 20v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v14" /><path d="M9 11.5l-1.5 2.5h3l-1.5 2.5" /><line x1={3} y1={20} x2={15} y2={20} /><line x1={4} y1={8} x2={14} y2={8} /></svg>;
+}
+
+export default IconChargingPile; \ No newline at end of file