1config BR2_PACKAGE_GOOGLE_MATERIAL_DESIGN_ICONS 2 bool "google-material-design-icons" 3 help 4 Material design icons are the official icon set from Google 5 that are designed under the material design guidelines. 6 7 https://github.com/google/material-design-icons 8 9if BR2_PACKAGE_GOOGLE_MATERIAL_DESIGN_ICONS 10 11config BR2_PACKAGE_GOOGLE_MATERIAL_DESIGN_ICONS_TYPE_PNG 12 bool "Install PNG icons" 13 help 14 Use PNG icon types. 15 16 The default. Traditional format; simplicity and compatibility. 17 18config BR2_PACKAGE_GOOGLE_MATERIAL_DESIGN_ICONS_TYPE_SVG 19 bool "Install SVG icons" 20 help 21 Use SVG icon types. 22 23 Vector format that is limitlessly scalable. 24 25config BR2_PACKAGE_GOOGLE_MATERIAL_DESIGN_ICONS_FONT 26 bool "Install TrueType font" 27 help 28 Install the Material TrueType font (ttf) on the target system. 29 30config BR2_PACKAGE_GOOGLE_MATERIAL_DESIGN_ICONS_SPRITES_CSS 31 bool "Install CSS sprites" 32 help 33 Install CSS (PNG) spritesheets. 34 35config BR2_PACKAGE_GOOGLE_MATERIAL_DESIGN_ICONS_SPRITES_SVG 36 bool "Install SVG sprites" 37 help 38 Install SVG spritesheets. 39 40endif 41