handGrabbing static method

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

regular: hand-grabbing thin: hand-grabbing light: hand-grabbing bold: hand-grabbing fill: hand-grabbing duotone: hand-grabbing

Implementation

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