mouseSimple static method

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

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

Implementation

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