@rhds/elements
Version:
Red Hat Design System Elements
14 lines (13 loc) • 408 B
TypeScript
import { LitElement } from 'lit';
/**
* @summary An overlay element to cover content with an opacity when navigation is expanded.
*/
export declare class RhNavigationSecondaryOverlay extends LitElement {
static readonly styles: CSSStyleSheet[];
open: boolean;
}
declare global {
interface HTMLElementTagNameMap {
'rh-navigation-secondary-overlay': RhNavigationSecondaryOverlay;
}
}