Repository URL to install this package:
Version:
0.9.6 ▾
|
ui-component-library
/
dist
/
typings
/
src
/
components
/
atoms
/
Placeholder
/
ParagraphPlaceholder
/
ParagraphPlaceholder.d.ts
|
---|
import React from 'react';
import { ParagraphPlaceholderProps } from './typings';
declare class ParagraphPlaceholder extends React.PureComponent<ParagraphPlaceholderProps> {
static defaultProps: {
widthList: number[];
rows: number;
width: string;
height: string;
itemHeight: number;
lineSpacing: number;
isDynamicViewBox: boolean;
};
getRowStyle: (i: number) => {
width: string;
height: React.ReactText;
transform: string;
};
getRows: () => JSX.Element[];
render(): JSX.Element;
}
export { ParagraphPlaceholder };
export default ParagraphPlaceholder;