UNPKG

zent

Version:

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

14 lines (13 loc) 404 B
import { PureComponent } from 'react'; import { IPlaceholderBaseShapeProps } from './Base'; export interface IPlaceholderCicleProps extends IPlaceholderBaseShapeProps { diameter?: number; } export default class Circle extends PureComponent<IPlaceholderCicleProps> { static defaultProps: { style: {}; animate: boolean; diameter: number; }; render(): JSX.Element; }