@dnb/eufemia
Version:
DNB Eufemia Design System UI Library
13 lines (12 loc) • 367 B
TypeScript
/**
* Web Heading Context
*
*/
import React from 'react';
import type { SkeletonContextValue } from '../skeleton/SkeletonHelper';
import type { HeadingProps } from './Heading';
export type HeadingContextValue = {
heading?: HeadingProps;
} & SkeletonContextValue;
declare const HeadingContext: React.Context<HeadingContextValue>;
export default HeadingContext;