@marcj/angular-desktop-ui
Version:
library offering you desktop UI widgets in Angular 7+
30 lines (27 loc) • 836 B
text/typescript
import {Component, Input} from "@angular/core";
import {Emoji, emojis} from "./emojis";
export class EmojiComponent {
name!: string;
size: number = 16;
get emoji(): Emoji | undefined {
if (this.name) {
if (this.name[0] === ':') return emojis[this.name.substring(1, this.name.length - 1)];
return emojis[this.name]
}
}
}