UNPKG

@theguild/components

Version:
11 lines (8 loc) 449 B
import * as react_jsx_runtime from 'react/jsx-runtime'; import { ComponentPropsWithoutRef } from 'react'; interface HeadingProps extends ComponentPropsWithoutRef<'h1'> { as: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'div' | 'p' | 'span'; size: 'xl' | 'lg' | 'md' | 'sm' | 'xs'; } declare function Heading({ as: _as, size, className, children, ...rest }: HeadingProps): react_jsx_runtime.JSX.Element; export { Heading, type HeadingProps };