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