monitorArrowUp static method

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

regular: monitor-arrow-up thin: monitor-arrow-up light: monitor-arrow-up bold: monitor-arrow-up fill: monitor-arrow-up duotone: monitor-arrow-up

Implementation

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