@claromentis/design-system
Version:
Claromentis Design System Component Library
23 lines (22 loc) • 572 B
JavaScript
import { h } from '@stencil/core';
// import { hasShadowDom, propagateFocusEvent, submitClosestForm } from "../../utils/utils";
/**
* @slot - Card header content goes in here.
*/
export class Cardheader {
render() {
return (h("div", { class: "card-header" }, h("slot", null)));
}
static get is() { return "cla-card-header"; }
static get encapsulation() { return "shadow"; }
static get originalStyleUrls() {
return {
"$": ["cla-card-header.scss"]
};
}
static get styleUrls() {
return {
"$": ["cla-card-header.css"]
};
}
}