import * as React from 'react'; import { FullRotation } from '../animations/full_rotation'; export interface SpinnerProps { widthPx: number; heightPx: number; } export const Spinner: React.StatelessComponent = props => { return ( ); };