You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

18 lines
484 B

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;