chatTeardrop static method

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

regular: chat-teardrop thin: chat-teardrop light: chat-teardrop bold: chat-teardrop fill: chat-teardrop duotone: chat-teardrop

Implementation

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