### Ellipsis 样例

```js
const article = 'There were injuries alleged in three cases in 2015, and a fourth incident in September, according to the safety recall report. After meeting with US regulators in October, the firm decided to issue a voluntary recall.';

<Ellipsis length={100}>{article}</Ellipsis>
```

### 安装方式
```js static
    import { Ellipsis } from 'abc-generals'

    ...
    const article = 'There were injuries alleged in three cases in 2015, and a fourth incident in September, according to the safety recall report. After meeting with US regulators in October, the firm decided to issue a voluntary recall.';

    <Ellipsis length={100}>{article}</Ellipsis>
    ...
```

## API

|参数|说明|类型|默认值|
|:--|:--|:--:|:--:|
|tooltip|移动到文本展示完整内容的提示|`boolean`|`-`|
|length|在按照长度截取下的文本最大字符数，超过则截取省略|`number`|`-`|
|lines|在按照行数截取下最大的行数，超过则截取省略|`number`|`1`|
|fullWidthRecognition|是否将全角字符的长度视为2来计算字符串长度|`boolean`|`-`|
