a zip code crypto-currency system good for red ONLY

avatar.js 704B

1234567891011121314151617181920212223
  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. var Avatar = (function () {
  11. function Avatar() {
  12. }
  13. Avatar.decorators = [
  14. { type: Directive, args: [{
  15. selector: 'ion-avatar'
  16. },] },
  17. ];
  18. /** @nocollapse */
  19. Avatar.ctorParameters = function () { return []; };
  20. return Avatar;
  21. }());
  22. export { Avatar };
  23. //# sourceMappingURL=avatar.js.map