UNPKG

@derockdev/discord-components-core

Version:

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

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