arrowLineUpRight property

AppIconData get arrowLineUpRight

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

Implementation

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