arrowsOutSimple property

AppIconData get arrowsOutSimple

regular: arrows-out-simple thin: arrows-out-simple light: arrows-out-simple bold: arrows-out-simple fill: arrows-out-simple duotone: arrows-out-simple

Implementation

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