arrowsSplit property

AppIconData get arrowsSplit

regular: arrows-split thin: arrows-split light: arrows-split bold: arrows-split fill: arrows-split duotone: arrows-split

Implementation

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