@watheia/content.elements.heading
Version:
14 lines (13 loc) • 638 B
TypeScript
/// <reference types="react" />
import { HeadingProps } from "@watheia/content.text.heading";
import { PossibleSizes } from "@watheia/iron-ui.theme.sizes";
export declare type HeaderProps = {
/** font-size for the header */
size?: PossibleSizes;
} & HeadingProps;
export declare function H1(props: HeaderProps): JSX.Element;
export declare function H2(props: HeaderProps): JSX.Element;
export declare function H3(props: HeaderProps): JSX.Element;
export declare function H4(props: HeaderProps): JSX.Element;
export declare function H5(props: HeaderProps): JSX.Element;
export declare function H6(props: HeaderProps): JSX.Element;