UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

10 lines (9 loc) 370 B
/** * Web Heading Provider * */ import type { HTMLProps } from 'react'; import type { HeadingProps } from './Heading'; export type HeadingProviderProps = HeadingProps; export type HeadingProviderAllProps = HeadingProviderProps & HTMLProps<HTMLElement>; export default function HeadingProvider(props: HeadingProviderAllProps): import("react/jsx-runtime").JSX.Element;