mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
17 lines
443 B
TypeScript
17 lines
443 B
TypeScript
import { Directive } from '@angular/core';
|
|
|
|
/**
|
|
* @name Thumbnail
|
|
* @module ionic
|
|
* @description
|
|
* A Thumbnail is a component that creates a squared image for an item.
|
|
* Thumbnails can be place on the left or right side of an item with the `item-left` or `item-right` directive.
|
|
* @see {@link /docs/v2/components/#thumbnail-list Thumbnail Component Docs}
|
|
*/
|
|
@Directive({
|
|
selector: 'ion-thumbnail'
|
|
})
|
|
export class Thumbnail {
|
|
|
|
}
|