26 lines
567 B
Plaintext
26 lines
567 B
Plaintext
import { Canvas, Meta, Story } from '@storybook/addon-docs';
|
|
import { Image, ImageRow } from './ImageAsset';
|
|
|
|
<Meta title="owncast/Frontend Assets/Emoji" parameters={chromatic: { disableSnapshot: true }} />
|
|
|
|
# Built-in Custom Emoji
|
|
|
|
{{#each emojiCollections}}
|
|
|
|
## {{capitalize this.name}}
|
|
|
|
<Story
|
|
name="{{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}}
|
|
]}/>
|
|
</Story>
|
|
|
|
{{/each}}
|