mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-01 05:47:17 +00:00
21 lines
390 B
TypeScript
21 lines
390 B
TypeScript
import Component from '@ember/component';
|
|
import { IAvatar } from 'wherehows-web/typings/app/avatars';
|
|
|
|
export default class AvatarMetadata extends Component {
|
|
tagName: 'span';
|
|
|
|
classNames = ['avatar-metadata'];
|
|
|
|
/**
|
|
* Reference to avatar containing metadata
|
|
* @type {IAvatar}
|
|
*/
|
|
avatar: IAvatar;
|
|
|
|
/**
|
|
* Slack team ID
|
|
* @type {string}
|
|
*/
|
|
team = 'T06BYN8F7';
|
|
}
|