diff options
author | codecalm <codecalm@gmail.com> | 2022-04-17 22:43:02 +0200 |
---|---|---|
committer | codecalm <codecalm@gmail.com> | 2022-04-17 22:43:02 +0200 |
commit | fbdb3101f9199938d25d15d6b49f858ef85ed94b (patch) | |
tree | 8568cefca939a67887953bc8c2940244a852735f /icons-react/icons-js/flame-off.js | |
parent | fix "off" icons (diff) | |
download | tabler-icons-fbdb3101f9199938d25d15d6b49f858ef85ed94b.tar.xz |
Release 1.65.0v1.65.0
Diffstat (limited to 'icons-react/icons-js/flame-off.js')
-rw-r--r-- | icons-react/icons-js/flame-off.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/icons-react/icons-js/flame-off.js b/icons-react/icons-js/flame-off.js new file mode 100644 index 00000000..5beb1431 --- /dev/null +++ b/icons-react/icons-js/flame-off.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconFlameOff({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-flame-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="M8.973 8.974c-.335 .378 -.67 .716 -.973 1.026c-1.226 1.26 -2 3.24 -2 5a6 6 0 0 0 11.472 2.466m.383 -3.597c-.32 -1.409 -1.122 -3.045 -1.855 -3.869c-.281 .472 -.543 .87 -.79 1.202m-2.358 -2.35c-.068 -2.157 -1.182 -4.184 -1.852 -4.852c0 .968 -.18 1.801 -.465 2.527" /><path d="M3 3l18 18" /></svg>; +} + +export default IconFlameOff;
\ No newline at end of file |