thumbnail.js 740B

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