arrowLineRight property

AppIconData get arrowLineRight

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

Implementation

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