dropSimple property

AppIconData get dropSimple

regular: drop-simple thin: drop-simple light: drop-simple bold: drop-simple fill: drop-simple duotone: drop-simple

Implementation

static AppIconData get dropSimple {
  switch (AppIcons.defaultStyle) {
    case AppIconsStyle.regular:
      return AppIconsRegular.dropSimple;
    case AppIconsStyle.thin:
      return AppIconsThin.dropSimple;
    case AppIconsStyle.light:
      return AppIconsLight.dropSimple;
    case AppIconsStyle.bold:
      return AppIconsBold.dropSimple;
    case AppIconsStyle.fill:
      return AppIconsFill.dropSimple;
    case AppIconsStyle.duotone:
      return AppIconsDuotone.dropSimple;
  }
}