arrowSquareRight static method

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

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

Implementation

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