UNPKG

@atlaskit/heading

Version:

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

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