UNPKG

@skyra/discord-components-core

Version:

Web components to easily build and display fake Discord messages on your webpages.

19 lines (18 loc) 431 B
import { h, Host } from '@stencil/core'; export class DiscordSpoiler { render() { return (h(Host, { class: "discord-spoiler" }, h("slot", null))); } static get is() { return "discord-spoiler"; } static get originalStyleUrls() { return { "$": ["discord-spoiler.css"] }; } static get styleUrls() { return { "$": ["discord-spoiler.css"] }; } } //# sourceMappingURL=discord-spoiler.js.map