cursorClick static method

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

regular: cursor-click thin: cursor-click light: cursor-click bold: cursor-click fill: cursor-click duotone: cursor-click

Implementation

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