compassTool static method

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

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

Implementation

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