alignLeft property

AppIconData get alignLeft

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

Implementation

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