arrowUpRight property

AppIconData get arrowUpRight

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

Implementation

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