@paraboly/pwc-sliding-panel
Version:
A panel that slides open from the sides of the page when you click a handle.
15 lines (14 loc) • 446 B
JavaScript
import { h } from "@stencil/core";
export class PwcSlidingPanelContent {
render() {
return h("slot", null);
}
static get is() { return "pwc-sliding-panel-content"; }
static get originalStyleUrls() { return {
"$": ["pwc-sliding-panel-content.scss"]
}; }
static get styleUrls() { return {
"$": ["pwc-sliding-panel-content.css"]
}; }
static get elementRef() { return "root"; }
}