@esri/calcite-components
Version:
Web Components for Esri's Calcite Design System.
10 lines (9 loc) • 436 B
TypeScript
import { FunctionalComponent } from "../../stencil-public-runtime";
import { JSXBase } from "../../stencil-public-runtime";
export declare type HeadingLevel = 1 | 2 | 3 | 4 | 5 | 6;
interface CalciteHeadingProps extends JSXBase.HTMLAttributes {
level: HeadingLevel;
}
export declare function constrainHeadingLevel(level: number): HeadingLevel;
export declare const CalciteHeading: FunctionalComponent<CalciteHeadingProps>;
export {};