alignTopSimple property

AppIconData get alignTopSimple

regular: align-top-simple thin: align-top-simple light: align-top-simple bold: align-top-simple fill: align-top-simple duotone: align-top-simple

Implementation

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