import * as React from 'react' interface Props { color?: string width?: number height?: number className?: string } export default class Loading extends React.Component { render() { const width = this.props.width || 30 const height = this.props.height || 30 const backgroundColor = this.props.color || '#000' return (
) } }