thumbnail.js 607B

12345678910111213141516171819
  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. export class Thumbnail {
  11. }
  12. Thumbnail.decorators = [
  13. { type: Directive, args: [{
  14. selector: 'ion-thumbnail'
  15. },] },
  16. ];
  17. /** @nocollapse */
  18. Thumbnail.ctorParameters = () => [];
  19. //# sourceMappingURL=thumbnail.js.map