circlesThree static method

PhosphorIconData circlesThree([
  1. PhosphorIconsStyle style = PhosphorIconsStyle.regular
])

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

Implementation

static PhosphorIconData circlesThree(
    [PhosphorIconsStyle style = PhosphorIconsStyle.regular]) {
  switch (style) {
    case PhosphorIconsStyle.regular:
      return PhosphorIconsRegular.circlesThree;
    case PhosphorIconsStyle.thin:
      return PhosphorIconsThin.circlesThree;
    case PhosphorIconsStyle.light:
      return PhosphorIconsLight.circlesThree;
    case PhosphorIconsStyle.bold:
      return PhosphorIconsBold.circlesThree;
    case PhosphorIconsStyle.fill:
      return PhosphorIconsFill.circlesThree;
    case PhosphorIconsStyle.duotone:
      return PhosphorIconsDuotone.circlesThree;
  }
}