UNPKG

zent

Version:

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

14 lines (13 loc) 353 B
import { PureComponent } from 'react'; export interface IPlaceholderBaseShapeProps { className?: string; style?: React.CSSProperties; animate?: boolean; } export default class Base extends PureComponent<IPlaceholderBaseShapeProps> { static defaultProps: { style: {}; animate: boolean; }; render(): JSX.Element; }