alignTop property

AppIconData get alignTop

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

Implementation

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