Update Amazon S3 icon
Thank you for your contribution! Before sending this Pull Request, please confirm the following:
- [X] I have read the contributing guidelines
- [X] I have run
python check.pyand received a ✅ - [X] The icon's size is under 1,024 Bytes
- [X] The layout of the SVG looks like this including newlines
<svg xmlns="http://www.w3.org/2000/svg"
aria-label="..." role="img"
viewBox="0 0 512 512"><path
d="m0 0H512V512H0"
fill="#fff"/> ... </svg>
If you have done the above, please send the Pull Request.
You can definitely reduce the file size by reducing the precision. Rounding to one decimal point is plenty fine, and you might be able to do 0 in places. I also wonder if it wouldn't be easier and smaller to incorporate the ellipse in the bucket path? It can be replicated with two arc commands.
Thank you for the feedback. I'll try to optimize a bit
You also can shrink a few bytes by using properties without the style; ie:
stroke-width="12" stroke="#fff" fill="none" instead of style="stroke-width:12px;stroke:#fff;fill:none" → saves 4
About the arcs commands empeig mentioned, you should give a try to the excellent https://yqnn.github.io/svg-path-editor/