arrowElbowRight static method

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

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

Implementation

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