'use client'; import { classNames } from '@vkontakte/vkjs'; import { useAdaptivity } from '../../../hooks/useAdaptivity'; import { Typography, type TypographyProps } from '../Typography'; import styles from './Subhead.module.css'; const densityClassNames = { none: styles.densityNone, compact: styles.densityCompact, }; export type SubheadProps = TypographyProps; /** * Используется для подзаголовков 2 уровня. * * @see https://vkui.io/components/typography#subhead */ export const Subhead = ({ className, Component = 'span', normalize = true, inline = false, ...restProps }: SubheadProps): React.ReactNode => { const { density = 'none' } = useAdaptivity(); return ( ); };