SuperTinyIcons icon indicating copy to clipboard operation
SuperTinyIcons copied to clipboard

Update Amazon S3 icon

Open empeig opened this issue 2 months ago • 3 comments

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.py and 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.

empeig avatar Oct 30 '25 11:10 empeig

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.

Eiim avatar Oct 30 '25 21:10 Eiim

Thank you for the feedback. I'll try to optimize a bit

empeig avatar Oct 30 '25 23:10 empeig

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/

romain-dartigues avatar Nov 02 '25 20:11 romain-dartigues