mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
18 lines
419 B
TypeScript
18 lines
419 B
TypeScript
// Type definitions for react-spinkit 1.1.4
|
|
// Project: https://github.com/KyleAMathews/react-spinkit
|
|
// Definitions by: Qubo <https://github.com/tkqubo>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference types="react" />
|
|
|
|
|
|
import { Component } from 'react';
|
|
|
|
interface Props {
|
|
spinnerName?: string;
|
|
}
|
|
|
|
declare class Spinner extends Component<Props, {}> { }
|
|
|
|
export default Spinner;
|