arrowSquareRight property

AppIconData get arrowSquareRight

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

Implementation

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