avatar.js 606B

123456789101112131415161718192021
  1. import { Directive } from '@angular/core';
  2. /**
  3. * @name Avatar
  4. * @module ionic
  5. * @description
  6. * An Avatar is a component that creates a circular image for an item.
  7. * Avatars can be placed on the left or right side of an item with the `item-start` or `item-end` directive.
  8. * @see {@link /docs/components/#avatar-list Avatar Component Docs}
  9. */
  10. export class Avatar {
  11. constructor() {
  12. }
  13. }
  14. Avatar.decorators = [
  15. { type: Directive, args: [{
  16. selector: 'ion-avatar'
  17. },] },
  18. ];
  19. /** @nocollapse */
  20. Avatar.ctorParameters = () => [];
  21. //# sourceMappingURL=avatar.js.map