diff options
Diffstat (limited to 'icons-react/icons-js/pepper.js')
-rw-r--r-- | icons-react/icons-js/pepper.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/icons-react/icons-js/pepper.js b/icons-react/icons-js/pepper.js new file mode 100644 index 00000000..17e188c9 --- /dev/null +++ b/icons-react/icons-js/pepper.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconPepper({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-pepper" 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 11c0 2.21 -2.239 4 -5 4s-5 -1.79 -5 -4a8 8 0 1 0 16 0a3 3 0 0 0 -6 0" /><path d="M16 8c0 -2 2 -4 4 -4" /></svg>; +} + +export default IconPepper;
\ No newline at end of file |