We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89d107f commit 483143aCopy full SHA for 483143a
src/components/ellipsisText/index.tsx
@@ -2,7 +2,7 @@ import React, { PureComponent } from "react";
2
import { Tooltip } from "antd";
3
import Resize from '../resize';
4
5
-export interface Props {
+export interface EllipsisTextProps {
6
value: string | number ;
7
title?: string | number;
8
className?: string;
@@ -22,7 +22,7 @@ export interface NewHTMLElement extends HTMLElement {
22
currentStyle?: CSSStyleDeclaration
23
}
24
25
-export default class EllipsisText extends PureComponent<Props, State> {
+export default class EllipsisText extends PureComponent<EllipsisTextProps, State> {
26
ellipsisRef: HTMLElement | null = null;
27
state = {
28
...initialState
0 commit comments