xCircle static method

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

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

Implementation

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