QiShaoXuan / common-components

Some common components of react

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

一些常用 react 组件总结

RowText

换行文本

何时使用

  • 仅展示一段内容的前 n 行

  • 第 n 行无法展示时显示省略号

使用

import { RowText } from 'Components';

<RowText content={content} />

API

参数 说明 类型 默认值 是否必须
content 文本内容 string ""
fontSize 文字大小 number 22
rows 仅显示几行文本 number 1
lineHeight 行高 number 1
mode 模式,normal文字正常截断,ellipsis文字结尾显示省略号 normal ellipsis ellipsis
className 额外的类名 string ""
Tag 文本容器的元素 string(keyof JSX.IntrinsicElements) div

About

Some common components of react


Languages

Language:TypeScript 72.4%Language:JavaScript 17.5%Language:CSS 10.1%