UNPKG

@yamada-ui/react

Version:

React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion

19 lines (18 loc) 919 B
import { ThemeProps } from "../../core/system/index.types.js"; import { Component, HTMLStyledProps } from "../../core/components/index.types.js"; import "../../core/index.js"; import { HeadingStyle } from "./heading.style.js"; import "../../index.js"; import * as react832 from "react"; //#region src/components/heading/heading.d.ts interface HeadingProps extends HTMLStyledProps<"h1">, ThemeProps<HeadingStyle> {} declare const HeadingPropsContext: react832.Context<Partial<HeadingProps> | undefined>, useHeadingPropsContext: () => Partial<HeadingProps> | undefined; /** * `Heading` is a component that represents section headings. By default, it renders an `h1` element. * * @see https://yamada-ui.com/docs/components/heading */ declare const Heading: Component<"h1", HeadingProps>; //#endregion export { Heading, HeadingProps, HeadingPropsContext, useHeadingPropsContext }; //# sourceMappingURL=heading.d.ts.map