arrowElbowDownRight static method

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

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

Implementation

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