diff options
Diffstat (limited to 'icons-react/icons-js/eye-check.js')
-rw-r--r-- | icons-react/icons-js/eye-check.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/icons-react/icons-js/eye-check.js b/icons-react/icons-js/eye-check.js new file mode 100644 index 00000000..3f04b9ea --- /dev/null +++ b/icons-react/icons-js/eye-check.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconEyeCheck({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-eye-check" 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 cx={12} cy={12} r={2} /><path d="M12 19c-4 0 -7.333 -2.333 -10 -7c2.667 -4.667 6 -7 10 -7s7.333 2.333 10 7c-.42 .736 -.858 1.414 -1.311 2.033" /><path d="M15 19l2 2l4 -4" /></svg>; +} + +export default IconEyeCheck;
\ No newline at end of file |