/// import React from 'react'; export interface SpinProps { className?: string; spinning?: boolean; size?: 'small' | 'default' | 'large'; tip?: string; delay?: number; } export default class Spin extends React.Component { }