I have developed a web application that incorporates Google's Material Icons into its design. The majority of the icons I utilize are from the default 'filled' style, with only one being from the 'outlined' style. To bring these icons into my project, I use the following CSS code:
@import url('https://fonts.googleapis.com/icon?family=Material+Icons|Material+Icons+Outlined|');
This import statement brings in two .woff font files - one for the regular 'Material Icons' font-family and one specifically for the 'Material Icons Outlined' family.
Since I am only using one icon from the outlined set, I'm wondering if there is a method to import just that individual icon without bringing in the entire collection (without having to save it locally)?
Any assistance on this matter would be greatly appreciated!