handDeposit static method

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

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

Implementation

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