diff options
Diffstat (limited to 'icons-react/icons-js/feather.js')
-rw-r--r-- | icons-react/icons-js/feather.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/icons-react/icons-js/feather.js b/icons-react/icons-js/feather.js new file mode 100644 index 00000000..1f0a1232 --- /dev/null +++ b/icons-react/icons-js/feather.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconFeather({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-feather" 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="M4 20l10 -10m0 -5v5h5m-9 -1v5h5m-9 -1v5h5m-5 -5l4 -4l4 -4" /><path d="M19 10c.638 -.636 1 -1.515 1 -2.486a3.515 3.515 0 0 0 -3.517 -3.514c-.97 0 -1.847 .367 -2.483 1m-3 13l4 -4l4 -4" /></svg>; +} + +export default IconFeather;
\ No newline at end of file |