UNPKG

@sanity/ui

Version:

The Sanity UI components.

14 lines (11 loc) 394 B
import {CSSObject} from '@sanity/ui/theme' import {ThemeProps} from '../types' import {responsiveFont} from './responsiveFont' import {ResponsiveFontStyleProps} from './types' /** * Get responsive CSS for the `heading` font style. * @internal */ export function responsiveHeadingFont(props: ResponsiveFontStyleProps & ThemeProps): CSSObject[] { return responsiveFont('heading', props) }