@patternfly/elements
Version:
PatternFly Elements
15 lines (14 loc) • 340 B
TypeScript
import { LitElement, type TemplateResult } from 'lit';
/**
* Caption
* @slot - Place element content here
*/
export declare class PfCaption extends LitElement {
static readonly styles: CSSStyleSheet[];
render(): TemplateResult<1>;
}
declare global {
interface HTMLElementTagNameMap {
'pf-caption': PfCaption;
}
}