crosshairSimple static method

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

regular: crosshair-simple thin: crosshair-simple light: crosshair-simple bold: crosshair-simple fill: crosshair-simple duotone: crosshair-simple

Implementation

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