diff options
Diffstat (limited to 'icons-react/icons-js/brand-monday.js')
-rw-r--r-- | icons-react/icons-js/brand-monday.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/icons-react/icons-js/brand-monday.js b/icons-react/icons-js/brand-monday.js new file mode 100644 index 00000000..5f1286bc --- /dev/null +++ b/icons-react/icons-js/brand-monday.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandMonday({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-brand-monday" 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" /><circle fill="#D8D8D8" cx={19.5} cy={15.5} r={1.5} /><path d="M9.5 7a1.5 1.5 0 0 1 1.339 2.177l-4.034 7.074c-.264 .447 -.75 .749 -1.305 .749a1.5 1.5 0 0 1 -1.271 -2.297l3.906 -6.827a1.5 1.5 0 0 1 1.365 -.876z" /><path d="M16.5 7a1.5 1.5 0 0 1 1.339 2.177l-4.034 7.074c-.264 .447 -.75 .749 -1.305 .749a1.5 1.5 0 0 1 -1.271 -2.297l3.906 -6.827a1.5 1.5 0 0 1 1.365 -.876z" /></svg>; +} + +export default IconBrandMonday;
\ No newline at end of file |