warningCircle static method

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

regular: warning-circle thin: warning-circle light: warning-circle bold: warning-circle fill: warning-circle duotone: warning-circle

Implementation

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