mirror of
https://github.com/owncast/owncast.git
synced 2024-11-23 05:14:20 +03:00
23 lines
435 B
Markdown
23 lines
435 B
Markdown
|
|
||
|
|
||
|
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}}
|