You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
457 B
21 lines
457 B
import { Canvas, Meta, Story } from '@storybook/addon-docs'; |
|
import { Image, ImageRow } from './ImageAsset'; |
|
|
|
<Meta title="owncast/Assets/Emoji" /> |
|
|
|
# Built-in Custom Emoji |
|
|
|
{{#each emojiCollections}} |
|
|
|
## {{capitalize this.name}} |
|
|
|
<a href="img/emoji/{{this.name}}/LICENSE.md" target="_blank"> |
|
LICENSE |
|
</a> |
|
<ImageRow images={[ |
|
{{#each this.images}} |
|
{src: "{{this.src}}", name: "{{this.name}}"}, |
|
{{/each}} |
|
]}/> |
|
|
|
{{/each}}
|
|
|