diff options
Diffstat (limited to 'icons-react/icons-js/affiliate.js')
-rw-r--r-- | icons-react/icons-js/affiliate.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/icons-react/icons-js/affiliate.js b/icons-react/icons-js/affiliate.js new file mode 100644 index 00000000..725b4400 --- /dev/null +++ b/icons-react/icons-js/affiliate.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconAffiliate({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-affiliate" 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="M5.5 5.5l1.706 5.685m5.607 5.609l5.687 1.706" /><path d="M11.683 12.317l6.817 -6.817" /><circle cx={5.5} cy={5.5} r={1.5} /><circle cx={18.5} cy={5.5} r={1.5} /><circle cx={18.5} cy={18.5} r={1.5} /><circle cx={8.5} cy={15.5} r={4.5} /></svg>; +} + +export default IconAffiliate;
\ No newline at end of file |