alignLeftSimple property

AppIconData get alignLeftSimple

regular: align-left-simple thin: align-left-simple light: align-left-simple bold: align-left-simple fill: align-left-simple duotone: align-left-simple

Implementation

static AppIconData get alignLeftSimple {
  switch (AppIcons.defaultStyle) {
    case AppIconsStyle.regular:
      return AppIconsRegular.alignLeftSimple;
    case AppIconsStyle.thin:
      return AppIconsThin.alignLeftSimple;
    case AppIconsStyle.light:
      return AppIconsLight.alignLeftSimple;
    case AppIconsStyle.bold:
      return AppIconsBold.alignLeftSimple;
    case AppIconsStyle.fill:
      return AppIconsFill.alignLeftSimple;
    case AppIconsStyle.duotone:
      return AppIconsDuotone.alignLeftSimple;
  }
}