mouseLeftClick static method

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

regular: mouse-left-click thin: mouse-left-click light: mouse-left-click bold: mouse-left-click fill: mouse-left-click duotone: mouse-left-click

Implementation

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