import { html, GemElement, customElement, attribute } from '@mantou/gem'; import { theme } from '../lib/theme'; @customElement('gem-panel-placeholder') export class GemPanelPlaceholderElement extends GemElement { @attribute exportparts = 'panel-loader'; render = () => { return html`
`; }; }