arrowsMerge property

AppIconData get arrowsMerge

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

Implementation

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