circlesThreePlus property

AppIconData get circlesThreePlus

regular: circles-three-plus thin: circles-three-plus light: circles-three-plus bold: circles-three-plus fill: circles-three-plus duotone: circles-three-plus

Implementation

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