compassRose static method

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

regular: compass-rose thin: compass-rose light: compass-rose bold: compass-rose fill: compass-rose duotone: compass-rose

Implementation

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