UNPKG

@rhds/elements

Version:

Red Hat Design System Elements

24 lines (23 loc) 642 B
import { LitElement } from 'lit'; /** * The tab panel for use within a rh-tabs element, must be paired with a rh-tab. * * @slot - Panel content should follow guidelines for [tab panel content layout](../guidelines) * */ export declare class RhTabPanel extends LitElement { #private; static readonly version = "{{version}}"; static readonly styles: CSSStyleSheet[]; /** * Sets color theme based on parent context */ private on?; connectedCallback(): void; render(): import("lit").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'rh-tab-panel': RhTabPanel; } }