linkSimpleHorizontal static method

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

regular: link-simple-horizontal thin: link-simple-horizontal light: link-simple-horizontal bold: link-simple-horizontal fill: link-simple-horizontal duotone: link-simple-horizontal

Implementation

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