Files
Edouard Marquez fd3ae027fa feat: Food icons with NOVA groups (#6521)
* Food icons for NOVA

* Level -> group
2025-04-07 13:34:50 +02:00

244 lines
4.8 KiB
Dart

part of 'app_icons.dart';
class FoodIcons extends AppIcon {
const FoodIcons.additives({
super.color,
super.size,
super.shadow,
super.semanticLabel,
super.key,
}) : super._(_FoodIconsFont.additives);
const FoodIcons.celery({
super.color,
super.size,
super.shadow,
super.semanticLabel,
super.key,
}) : super._(_FoodIconsFont.celery);
const FoodIcons.crustaceans({
super.color,
super.size,
super.shadow,
super.semanticLabel,
super.key,
}) : super._(_FoodIconsFont.crustaceans);
const FoodIcons.eggs({
super.color,
super.size,
super.shadow,
super.semanticLabel,
super.key,
}) : super._(_FoodIconsFont.eggs);
const FoodIcons.fairTrade({
super.color,
super.size,
super.shadow,
super.semanticLabel,
super.key,
}) : super._(_FoodIconsFont.fair_trade);
const FoodIcons.fat({
super.color,
super.size,
super.shadow,
super.semanticLabel,
super.key,
}) : super._(_FoodIconsFont.fat);
const FoodIcons.fish({
super.color,
super.size,
super.shadow,
super.semanticLabel,
super.key,
}) : super._(_FoodIconsFont.fish);
const FoodIcons.forestFootprint({
super.color,
super.size,
super.shadow,
super.semanticLabel,
super.key,
}) : super._(_FoodIconsFont.forest_footprint);
const FoodIcons.gluten({
super.color,
super.size,
super.shadow,
super.semanticLabel,
super.key,
}) : super._(_FoodIconsFont.gluten);
const FoodIcons.lupin({
super.color,
super.size,
super.shadow,
super.semanticLabel,
super.key,
}) : super._(_FoodIconsFont.lupin);
const FoodIcons.milk({
super.color,
super.size,
super.shadow,
super.semanticLabel,
super.key,
}) : super._(_FoodIconsFont.milk);
const FoodIcons.molluscs({
super.color,
super.size,
super.shadow,
super.semanticLabel,
super.key,
}) : super._(_FoodIconsFont.molluscs);
const FoodIcons.mustard({
super.color,
super.size,
super.shadow,
super.semanticLabel,
super.key,
}) : super._(_FoodIconsFont.mustard);
const FoodIcons.nova({
super.color,
super.size,
super.shadow,
super.semanticLabel,
super.key,
}) : super._(_FoodIconsFont.nova);
const FoodIcons.nova1({
super.color,
super.size,
super.shadow,
super.semanticLabel,
super.key,
}) : super._(_FoodIconsFont.nova_1);
const FoodIcons.nova2({
super.color,
super.size,
super.shadow,
super.semanticLabel,
super.key,
}) : super._(_FoodIconsFont.nova_2);
const FoodIcons.nova3({
super.color,
super.size,
super.shadow,
super.semanticLabel,
super.key,
}) : super._(_FoodIconsFont.nova_3);
const FoodIcons.nova4({
super.color,
super.size,
super.shadow,
super.semanticLabel,
super.key,
}) : super._(_FoodIconsFont.nova_4);
const FoodIcons.nuts({
super.color,
super.size,
super.shadow,
super.semanticLabel,
super.key,
}) : super._(_FoodIconsFont.nuts);
const FoodIcons.organicFarming({
super.color,
super.size,
super.shadow,
super.semanticLabel,
super.key,
}) : super._(_FoodIconsFont.organic_farming);
const FoodIcons.palmOil({
super.color,
super.size,
super.shadow,
super.semanticLabel,
super.key,
}) : super._(_FoodIconsFont.palm_oil);
const FoodIcons.peanuts({
super.color,
super.size,
super.shadow,
super.semanticLabel,
super.key,
}) : super._(_FoodIconsFont.peanuts);
const FoodIcons.salt({
super.color,
super.size,
super.shadow,
super.semanticLabel,
super.key,
}) : super._(_FoodIconsFont.salt);
const FoodIcons.saturatedFat({
super.color,
super.size,
super.shadow,
super.semanticLabel,
super.key,
}) : super._(_FoodIconsFont.saturated_fat);
const FoodIcons.sesameSeeds({
super.color,
super.size,
super.shadow,
super.semanticLabel,
super.key,
}) : super._(_FoodIconsFont.sesame_seeds);
const FoodIcons.soybeans({
super.color,
super.size,
super.shadow,
super.semanticLabel,
super.key,
}) : super._(_FoodIconsFont.soybeans);
const FoodIcons.sugar({
super.color,
super.size,
super.shadow,
super.semanticLabel,
super.key,
}) : super._(_FoodIconsFont.sugar);
const FoodIcons.vegan({
super.color,
super.size,
super.shadow,
super.semanticLabel,
super.key,
}) : super._(_FoodIconsFont.vegan);
const FoodIcons.vegetarian({
super.color,
super.size,
super.shadow,
super.semanticLabel,
super.key,
}) : super._(_FoodIconsFont.vegetarian);
const FoodIcons.sulphites({
super.color,
super.size,
super.shadow,
super.semanticLabel,
super.key,
}) : super._(_FoodIconsFont.sulphites);
}