handSwipeLeft static method

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

regular: hand-swipe-left thin: hand-swipe-left light: hand-swipe-left bold: hand-swipe-left fill: hand-swipe-left duotone: hand-swipe-left

Implementation

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