handSwipeRight static method

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

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

Implementation

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