aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js/scale-outline.js
blob: e3fd80eaf07ea62dc7fb3c0ddb4119265f15a1c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import * as React from "react";

function IconScaleOutline({
  size = 24,
  color = "currentColor",
  stroke = 2,
  ...props
}) {
  return <svg xmlns="http://www.w3.org/2000/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}><desc>{"Download more icon variants from https://tabler-icons.io/i/scale-outline"}</desc><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;