handPeace static method

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

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

Implementation

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