a zip code crypto-currency system good for red ONLY

badge.js 852B

123456789101112131415161718192021222324252627
  1. import { Directive, ElementRef, Renderer } from '@angular/core';
  2. import { Config } from '../../config/config';
  3. import { Ion } from '../ion';
  4. /**
  5. * @name Badge
  6. * @module ionic
  7. * @description
  8. * Badges are simple components in Ionic containing numbers or text. You can display a badge to indicate that there is new information associated with the item it is on.
  9. * @see {@link /docs/components/#badges Badges Component Docs}
  10. */
  11. export class Badge extends Ion {
  12. constructor(config, elementRef, renderer) {
  13. super(config, elementRef, renderer, 'badge');
  14. }
  15. }
  16. Badge.decorators = [
  17. { type: Directive, args: [{
  18. selector: 'ion-badge'
  19. },] },
  20. ];
  21. /** @nocollapse */
  22. Badge.ctorParameters = () => [
  23. { type: Config, },
  24. { type: ElementRef, },
  25. { type: Renderer, },
  26. ];
  27. //# sourceMappingURL=badge.js.map