UNPKG

360 BTypeScriptView Raw
1import { BoxProps } from "../Box";
2import * as React from "react";
3import { Omit } from "../common-types";
4
5interface IHeading {
6 /**
7 * The size of the Heading.
8 */
9 size?: "2xl" | "xl" | "lg" | "md" | "sm" | "xs";
10}
11
12export type HeadingProps = IHeading & Omit<BoxProps, "size">;
13
14declare const Heading: React.FC<HeadingProps>;
15
16export default Heading;