handsClapping static method

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

regular: hands-clapping thin: hands-clapping light: hands-clapping bold: hands-clapping fill: hands-clapping duotone: hands-clapping

Implementation

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