UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

12 lines (11 loc) 350 B
/** * Web Heading Context * */ import type { SkeletonContextValue } from '../skeleton/SkeletonHelper'; import type { HeadingProps } from './Heading'; export type HeadingContextValue = { heading?: HeadingProps; } & SkeletonContextValue; declare const HeadingContext: import("react").Context<HeadingContextValue>; export default HeadingContext;