arrowRight property

AppIconData get arrowRight

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

Implementation

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