@dnb/eufemia
Version:
DNB Eufemia Design System UI Library
10 lines (9 loc) • 358 B
TypeScript
/**
* Web Heading Provider
*
*/
import React from 'react';
import { HeadingProps } from './Heading';
export type HeadingProviderProps = HeadingProps;
export type HeadingProviderAllProps = HeadingProviderProps & React.HTMLProps<HTMLElement>;
export default function HeadingProvider(props: HeadingProviderAllProps): import("react/jsx-runtime").JSX.Element;