arrowSquareOut property

AppIconData get arrowSquareOut

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

Implementation

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