import * as React from 'react'; import classNames from 'classnames'; import { composeRef } from 'rc-util/lib/ref'; import { devUseWarning } from '../_util/warning'; import type { ConfigConsumerProps, DirectionType } from '../config-provider'; import { ConfigContext } from '../config-provider'; import useStyle from './style'; export interface TypographyProps extends React.HTMLAttributes { id?: string; prefixCls?: string; className?: string; rootClassName?: string; style?: React.CSSProperties; children?: React.ReactNode; /** @internal */ component?: C; 'aria-label'?: string; direction?: DirectionType; } interface InternalTypographyProps extends TypographyProps { /** @deprecated Use `ref` directly if using React 16 */ setContentRef?: (node: HTMLElement) => void; } const Typography = React.forwardRef< HTMLElement, InternalTypographyProps >((props, ref) => { const { prefixCls: customizePrefixCls, component: Component = 'article', className, rootClassName, setContentRef, children, direction: typographyDirection, style, ...restProps } = props; const { getPrefixCls, direction: contextDirection, typography, } = React.useContext(ConfigContext); const direction = typographyDirection ?? contextDirection; let mergedRef = ref; if (setContentRef) { mergedRef = composeRef(ref, setContentRef); } if (process.env.NODE_ENV !== 'production') { const warning = devUseWarning('Typography'); warning.deprecated(!setContentRef, 'setContentRef', 'ref'); } const prefixCls = getPrefixCls('typography', customizePrefixCls); // Style const [wrapCSSVar, hashId, cssVarCls] = useStyle(prefixCls); const componentClassName = classNames( prefixCls, typography?.className, { [`${prefixCls}-rtl`]: direction === 'rtl', }, className, rootClassName, hashId, cssVarCls, ); const mergedStyle: React.CSSProperties = { ...typography?.style, ...style }; return wrapCSSVar( // @ts-expect-error: Expression produces a union type that is too complex to represent. {children} , ); }); if (process.env.NODE_ENV !== 'production') { Typography.displayName = 'Typography'; } // es default export should use const instead of let export default Typography;