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