sidebarSimple static method

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

regular: sidebar-simple thin: sidebar-simple light: sidebar-simple bold: sidebar-simple fill: sidebar-simple duotone: sidebar-simple

Implementation

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