import * as React from 'react'; import classNames from 'classnames'; import { composeRef } from 'rc-util/lib/ref'; import { ConfigConsumer, ConfigConsumerProps } from '../config-provider'; import devWarning from '../_util/devWarning'; export interface TypographyProps { id?: string; prefixCls?: string; className?: string; style?: React.CSSProperties; children?: React.ReactNode; ['aria-label']?: string; } interface InternalTypographyProps extends TypographyProps { component?: string; /** @deprecated Use `ref` directly if using React 16 */ setContentRef?: (node: HTMLElement) => void; } const Typography: React.ForwardRefRenderFunction<{}, InternalTypographyProps> = ( { prefixCls: customizePrefixCls, component = 'article', className, 'aria-label': ariaLabel, setContentRef, children, ...restProps }, ref, ) => { let mergedRef = ref; if (setContentRef) { devWarning(false, 'Typography', '`setContentRef` is deprecated. Please use `ref` instead.'); mergedRef = composeRef(ref, setContentRef); } return ( {({ getPrefixCls, direction }: ConfigConsumerProps) => { const Component = component as any; const prefixCls = getPrefixCls('typography', customizePrefixCls); const componentClassName = classNames( prefixCls, { [`${prefixCls}-rtl`]: direction === 'rtl', }, className, ); return ( {children} ); }} ); }; const RefTypography = React.forwardRef(Typography); RefTypography.displayName = 'Typography'; // es default export should use const instead of let const ExportTypography = (RefTypography as unknown) as React.FC; export default ExportTypography;