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