diff options
Diffstat (limited to 'icons-react/icons-js/scale-outline.js')
-rw-r--r-- | icons-react/icons-js/scale-outline.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/icons-react/icons-js/scale-outline.js b/icons-react/icons-js/scale-outline.js new file mode 100644 index 00000000..b631fb8a --- /dev/null +++ b/icons-react/icons-js/scale-outline.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconScaleOutline({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-scale-outline" 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" /><rect x={3} y={3} width={18} height={18} rx={4} /><path d="M12 7c1.956 0 3.724 .802 4.994 2.095l-2.956 2.904a3 3 0 0 0 -2.038 -.799a3 3 0 0 0 -2.038 .798l-2.956 -2.903a6.979 6.979 0 0 1 4.994 -2.095z" /></svg>; +} + +export default IconScaleOutline;
\ No newline at end of file |