UNPKG

zent

Version:

一套前端设计语言和基于React的实现

20 lines (19 loc) 591 B
import { PureComponent } from 'react'; export interface IPlaceholderTextRowDashedProps { className?: string; style?: React.CSSProperties; lineSpacing?: number | string; animate?: boolean; segments?: Array<number | string>; } export interface IPlaceholderTextRowDashedState { segments: number[]; } export default class TextRowDashed extends PureComponent<IPlaceholderTextRowDashedProps, IPlaceholderTextRowDashedState> { static defaultProps: { lineSpacing: string; animate: boolean; }; constructor(props: any); render(): JSX.Element; }