diff options
Diffstat (limited to 'icons-react/icons-js/axe.js')
-rw-r--r-- | icons-react/icons-js/axe.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/icons-react/icons-js/axe.js b/icons-react/icons-js/axe.js new file mode 100644 index 00000000..d58b62d5 --- /dev/null +++ b/icons-react/icons-js/axe.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconAxe({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-axe" 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="M13 9l7.383 7.418c.823 .82 .823 2.148 0 2.967a2.11 2.11 0 0 1 -2.976 0l-7.407 -7.385" /><path d="M6.66 15.66l-3.32 -3.32a1.25 1.25 0 0 1 .42 -2.044l3.24 -1.296l6 -6l3 3l-6 6l-1.296 3.24a1.25 1.25 0 0 1 -2.044 .42z" /></svg>; +} + +export default IconAxe;
\ No newline at end of file |