arrowSquareUpRight property

AppIconData get arrowSquareUpRight

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

Implementation

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