zent
Version:
一套前端设计语言和基于React的实现
15 lines (14 loc) • 397 B
TypeScript
import { PureComponent } from 'react';
export interface IPlaceholderTextRowProps {
className?: string;
style?: React.CSSProperties;
animate?: boolean;
lineSpacing?: string | number;
}
export default class TextRow extends PureComponent<IPlaceholderTextRowProps> {
static defaultProps: {
lineSpacing: string;
animate: boolean;
};
render(): JSX.Element;
}