Newer
Older
import {Component, h, Host} from '@stencil/core';
@Component({
tag: 'hy-paragraph-text',
styleUrl: 'paragraph-text.scss',
const classAttributes = ['hy-paragraph-text'];
<Host>
<div class={classAttributes.join(' ')}>
<slot></slot>
</div>
</Host>