UNPKG

@atlaskit/heading

Version:

A heading is a typography component used to display text in different sizes and formats.

9 lines 269 B
import { useContext } from 'react'; import { HeadingLevelContext } from './heading-level-context'; /** * @internal * @returns The current heading level context. */ export var useHeadingLevel = function useHeadingLevel() { return useContext(HeadingLevelContext); };