arrowSquareDownRight property

AppIconData get arrowSquareDownRight

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

Implementation

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