nes-ui-react
Version:
A design system that paints the web in 8 bits.
11 lines (10 loc) • 491 B
TypeScript
import { IdProps } from "./interface/IdProps";
import { StyleProps } from "./interface/StyleProps";
import { TextProps } from "./Text";
export interface HeadingProps extends StyleProps, TextProps, IdProps {
topSpacing?: boolean;
bottomSpacing?: boolean;
dense?: boolean;
className?: string;
}
export declare const Heading: ({ id, children, style, color, size, centered, topSpacing, bottomSpacing, dense, className }: HeadingProps) => import("react/jsx-runtime").JSX.Element;