arrowDownRight property

AppIconData get arrowDownRight

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

Implementation

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