makes move icon thinner

This commit is contained in:
abhinav-grd 2021-09-22 10:18:33 +05:30
parent 0bb82c189e
commit 1a8c4dcf23

View file

@ -7,13 +7,17 @@ export default function MoveIcon(props) {
height={props.height} height={props.height}
viewBox={props.viewBox} viewBox={props.viewBox}
width={props.width}> width={props.width}>
<path d="M13.025 1l-2.847 2.828 6.176 6.176h-16.354v3.992h16.354l-6.176 6.176 2.847 2.828 10.975-11z" /> <path
d="M13.025 1l-2.847 2.828 6.176 6.176h-16.354v3.992h16.354l-6.176 6.176 2.847 2.828 10.975-11z"
strokeWidth="2"
stroke="black"
/>
</svg> </svg>
); );
} }
MoveIcon.defaultProps = { MoveIcon.defaultProps = {
height: 20, height: 24,
width: 20, width: 24,
viewBox: '0 0 24 24', viewBox: '0 0 24 24',
}; };