mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-23 00:45:16 +00:00
15 lines
357 B
TypeScript
15 lines
357 B
TypeScript
|
import * as React from 'react';
|
||
|
import { CSSModule } from './index';
|
||
|
|
||
|
export interface SpinnerProps extends React.HTMLAttributes<HTMLElement> {
|
||
|
[key: string]: any;
|
||
|
tag?: React.ElementType;
|
||
|
type?: string;
|
||
|
size?: any;
|
||
|
color?: string;
|
||
|
cssModule?: CSSModule;
|
||
|
}
|
||
|
|
||
|
declare class Spinner extends React.Component<SpinnerProps> {}
|
||
|
export default Spinner;
|