Upload the images twice as big on your website and then, make them smaller using CSS.

For example, if you want to display icons of 100×100, upload them in 200×200 and add the following to your child-theme’s style.css:

.yourselector img {
     max-width: 100px;
     max-height: 100px;
}