I am creating a web application which uses Google's Material Icons. Nearly all of the icons I use are of the default 'filled' style, and 1 one is of the 'outlined' style. I import the icons with the following CSS code:
@import url('https://fonts.googleapis.com/icon?family=Material+Icons|Material+Icons+Outlined|');
This imports two .woff font files, one for the default 'Material Icons' font-family, and one for the 'Material Icons Outlined' family.
Given that I am only using 1 icon from the outlined family, is there a way to only import that specific icon, instead of importing the entire collection (without saving locally)?
Any help is appreciated