${this.label ? this.label : ''}
`;
}
}
export class TabPanel extends LitElement {
@property({ type: String }) value = '';
@property({ type: String }) tabsValue = '';
@property({ type: Boolean }) keepMounted = false;
static styles = css`
:host {
display: block;
width: 100%;
}
:host([hidden]) {
display: none !important;
}
.panel-content {
padding: 24px;
}
`;
updated(changedProperties: Map