UNPKG

@clubmed/trident-ui

Version:

Shared ClubMed React UI components

7 lines (6 loc) 261 B
import { ComponentPropsWithoutRef, FunctionComponent } from 'react'; export interface HeadingProps extends ComponentPropsWithoutRef<'h1'> { asDiv?: boolean; level?: 1 | 2 | 3 | 4 | 5 | 6; } export declare const Heading: FunctionComponent<HeadingProps>;