Files
ionic-framework/src/components/thumbnail/thumbnail.ts
Matt Carpenter cb24ca7ce7 Update thumbnail.ts
minor: fix typos
2016-10-16 10:07:22 +01:00

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 {
}