arrowElbowUpRight static method

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

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

Implementation

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