arrowElbowLeftUp static method

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

regular: arrow-elbow-left-up thin: arrow-elbow-left-up light: arrow-elbow-left-up bold: arrow-elbow-left-up fill: arrow-elbow-left-up duotone: arrow-elbow-left-up

Implementation

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