UNPKG

antd-hz

Version:

华卓科技基于 antd 5.0 定制的组件库

8 lines (7 loc) 443 B
import * as React from 'react'; import type { BlockProps, EllipsisConfig } from './Base'; export interface TextProps extends BlockProps<'span'>, Omit<React.HTMLAttributes<HTMLSpanElement>, 'type' | keyof BlockProps<'span'>> { ellipsis?: boolean | Omit<EllipsisConfig, 'expandable' | 'rows' | 'onExpand'>; } declare const _default: React.ForwardRefExoticComponent<TextProps & React.RefAttributes<HTMLSpanElement>>; export default _default;