import React from 'react'; export enum SPINNER_SIZE { SM = 'sm', MD = 'md' } export enum SPINNER_COLOR { BLACK = 'black', WHITE = 'white', BLUE = 'blue', GRAY = 'gray', GRAY_DARK = 'gray_dark', RED = 'red', } export interface SpinnerProps { delay?: number center?: boolean size?: SPINNER_SIZE color?: SPINNER_COLOR } export default class Spinner extends React.Component {}