@chakra-ui/core
Version:
Responsive and accessible React UI components built with React and Emotion
17 lines (12 loc) • 360 B
TypeScript
import { BoxProps } from "../Box";
import * as React from "react";
import { Omit } from "../common-types";
interface IHeading {
/**
* The size of the Heading.
*/
size?: "2xl" | "xl" | "lg" | "md" | "sm" | "xs";
}
export type HeadingProps = IHeading & Omit<BoxProps, "size">;
declare const Heading: React.FC<HeadingProps>;
export default Heading;