arrowUp property

AppIconData get arrowUp

regular: arrow-up thin: arrow-up light: arrow-up bold: arrow-up fill: arrow-up duotone: arrow-up

Implementation

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