diff options
Diffstat (limited to 'icons-react/icons-js/chef-hat.js')
-rw-r--r-- | icons-react/icons-js/chef-hat.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/icons-react/icons-js/chef-hat.js b/icons-react/icons-js/chef-hat.js new file mode 100644 index 00000000..0b3d55b4 --- /dev/null +++ b/icons-react/icons-js/chef-hat.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconChefHat({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-chef-hat" 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="M12 3c1.918 0 3.52 1.35 3.91 3.151a4 4 0 0 1 2.09 7.723l0 7.126h-12v-7.126a4.002 4.002 0 1 1 2.092 -7.723a3.999 3.999 0 0 1 3.908 -3.151z" /><path d="M6.161 17.009l11.839 -.009" /></svg>; +} + +export default IconChefHat;
\ No newline at end of file |