alignCenterHorizontalSimple static method

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

regular: align-center-horizontal-simple thin: align-center-horizontal-simple light: align-center-horizontal-simple bold: align-center-horizontal-simple fill: align-center-horizontal-simple duotone: align-center-horizontal-simple

Implementation

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