arrowLineDownRight property

AppIconData get arrowLineDownRight

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

Implementation

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