teaBag static method

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

regular: tea-bag thin: tea-bag light: tea-bag bold: tea-bag fill: tea-bag duotone: tea-bag

Implementation

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