import React from 'react'; import classNames from 'classnames'; interface Props { size: 'small' | 'mini' | 'normal'; direction?: string; } export class Spinner extends React.Component { public render() { const { size, direction } = this.props; return (
); } }