diff options
Diffstat (limited to 'icons-react/icons-js/battery-eco.js')
-rw-r--r-- | icons-react/icons-js/battery-eco.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/icons-react/icons-js/battery-eco.js b/icons-react/icons-js/battery-eco.js new file mode 100644 index 00000000..b7e7a8f3 --- /dev/null +++ b/icons-react/icons-js/battery-eco.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBatteryEco({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-battery-eco" 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="M4 9a2 2 0 0 1 2 -2h11a2 2 0 0 1 2 2v.5a0.5 .5 0 0 0 .5 .5a0.5 .5 0 0 1 .5 .5v3a0.5 .5 0 0 1 -.5 .5a0.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-5.5" /><path d="M3 16.143c0 -2.84 2.09 -5.143 4.667 -5.143h2.333v.857c0 2.84 -2.09 5.143 -4.667 5.143h-2.333v-.857z" /><path d="M3 20v-3" /></svg>; +} + +export default IconBatteryEco;
\ No newline at end of file |