mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 03:29:59 +08:00
2e284aa017
* update warning * rm warning * replace with dev warning * fix test * fix site * Update webpack.config.js Co-authored-by: 偏右 <afc163@gmail.com> * Update webpack.config.js * fix sytax * adjust * move into function Co-authored-by: 偏右 <afc163@gmail.com>
19 lines
484 B
TypeScript
19 lines
484 B
TypeScript
import * as React from 'react';
|
|
import devWarning from '../_util/devWarning';
|
|
import Base, { BlockProps } from './Base';
|
|
|
|
export interface TextProps extends BlockProps {
|
|
ellipsis?: boolean;
|
|
}
|
|
|
|
const Text: React.FC<TextProps> = ({ ellipsis, ...restProps }) => {
|
|
devWarning(
|
|
typeof ellipsis !== 'object',
|
|
'Typography.Text',
|
|
'`ellipsis` only supports boolean value.',
|
|
);
|
|
return <Base {...restProps} ellipsis={!!ellipsis} component="span" />;
|
|
};
|
|
|
|
export default Text;
|