Repository URL to install this package:
|
Version:
2.7.3 ▾
|
@skava/ui
/
dist
/
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;