Repository URL to install this package:
Version:
0.9.6 ▾
|
ui-component-library
/
dist
/
typings
/
src
/
components
/
atoms
/
Placeholder
/
TextPlaceholder
/
TextPlaceholder.d.ts
|
---|
import React from 'react';
import { TextPlaceholderProps } from './typings';
declare class TextPlaceholder extends React.PureComponent<TextPlaceholderProps> {
static defaultProps: {
fill: string;
viewBox: string;
width: string;
height: string;
};
render(): JSX.Element;
}
export { TextPlaceholder };
export default TextPlaceholder;