UNPKG

chakra-ui

Version:

Responsive and accessible React UI components built with React and Emotion

16 lines (11 loc) 306 B
import { BoxProps } from "../Box"; import * as React from "react"; interface IHeading { /** * The size of the Heading. */ size?: "2xl" | "xl" | "lg" | "md" | "sm" | "xs"; } export type HeadingProps = IHeading & BoxProps; declare const Heading: React.FC<HeadingProps>; export default Heading;