mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 21:03:19 +03:00
27 lines
664 B
Text
27 lines
664 B
Text
import { Canvas, Meta, Story, Description, IconGallery, IconItem } from '@storybook/addon-docs';
|
|
import { Image, ImageRow } from './ImageAsset';
|
|
|
|
<Meta title="owncast/Frontend Assets/Emoji" parameters=\{{previewTabs: { canvas: { hidden: true } }, chromatic: { disableSnapshot: true }}} />
|
|
|
|
# Built-in Custom Emoji
|
|
|
|
{{#each emojiCollections}}
|
|
|
|
<Description
|
|
markdown={`
|
|
## {{capitalize this.name}}
|
|
|
|
<a href="img/emoji/{{this.name}}/LICENSE.md" target="_blank">
|
|
LICENSE
|
|
</a>
|
|
`} />
|
|
|
|
<IconGallery>
|
|
{{#each images}}
|
|
<IconItem name="{{this.name}}">
|
|
<img src="{{this.src}}" />
|
|
</IconItem>
|
|
{{/each}}
|
|
</IconGallery>
|
|
|
|
{{/each}}
|