UNPKG

summit-kit

Version:

A React component library for building modern web applications with an earthy and outdoorsy flair.

56 lines (55 loc) 2.94 kB
import { StandardProps } from '../Types/general.tsx'; /** * Renders a level 1 heading (`<h1>`) with customizable classes and children. * * @param props - The standard properties for the heading component. * @param props.classes - An optional array of additional CSS class names to apply to the heading. * @param props.children - The content to be displayed inside the heading. * @returns A React element representing an `<h1>` heading. */ export declare const H1: (props: StandardProps) => import("react/jsx-runtime").JSX.Element; /** * Renders an H2 heading element with customizable classes and children. * * @param props - The standard properties for the heading component. * @param props.classes - An optional array of additional CSS class names to apply to the heading. * @param props.children - The content to be displayed inside the heading. * @returns A React element representing an H2 heading. */ export declare const H2: (props: StandardProps) => import("react/jsx-runtime").JSX.Element; /** * Renders an `<h3>` HTML element with customizable classes and children. * * @param props - The standard properties for the heading component. * @param props.classes - An optional array of additional CSS class names to apply to the `<h3>` element. * @param props.children - The content to be rendered inside the `<h3>` element. * @returns A React element representing an `<h3>` heading. */ export declare const H3: (props: StandardProps) => import("react/jsx-runtime").JSX.Element; /** * Renders an `<h4>` HTML heading element with customizable classes and children. * * @param props - The standard properties for the heading component. * @param props.classes - An optional array of additional CSS class names to apply to the heading. * @param props.children - The content to be displayed inside the heading. * @returns A React element representing an `<h4>` heading. */ export declare const H4: (props: StandardProps) => import("react/jsx-runtime").JSX.Element; /** * Renders an H5 heading element with customizable classes and children. * * @param props - The standard properties for the heading component. * @param props.classes - Optional array of additional CSS class names to apply to the heading. * @param props.children - The content to be rendered inside the heading. * @returns A React element representing an H5 heading. */ export declare const H5: (props: StandardProps) => import("react/jsx-runtime").JSX.Element; /** * Renders a `<h6>` heading element with customizable classes and children. * * @param props - The standard properties for the heading component. * @param props.classes - Optional array of additional CSS class names to apply to the heading. * @param props.children - The content to be rendered inside the heading. * @returns A React element representing an `<h6>` heading. */ export declare const H6: (props: StandardProps) => import("react/jsx-runtime").JSX.Element;