# @types/react-spinkit

> TypeScript definitions for react-spinkit

Latest version **3.0.10** (published 2023-11-07) · MIT license · 0 weekly downloads

## Install

```sh
npm install @types/react-spinkit
pnpm add @types/react-spinkit
yarn add @types/react-spinkit
bun add @types/react-spinkit
```

## Health

**Score 45/100 (D)** — status: abandoned.

Positive: has types; no vulnerabilities; high maintenance score; popular repo; extremely popular.

Warnings: low downloads; no esm support.

Negative: abandoned.

## Facts

| | |
|---|---|
| Version | 3.0.10 |
| Published | 2023-11-07 |
| First published | 2016-05-17 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 7.1 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 51433 |
| Maintainers | types |

## Links

- npm: https://www.npmjs.com/package/@types/react-spinkit
- Repository: https://github.com/DefinitelyTyped/DefinitelyTyped
- Homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-spinkit
- npm.io page: https://npm.io/package/@types/react-spinkit

## Dependencies (1)

- [@types/react](https://npm.io/package/@types/react.md) *

## Recent versions

- 3.0.10 (latest) — 2023-11-07
- 3.0.7 (ts4.4) — 2021-07-08
- 3.0.6 (ts3.3) — 2020-05-15
- 3.0.5 (ts2.9) — 2018-10-03
- 3.0.3 (ts2.6) — 2018-02-12
- 3.0.2 (ts2.3) — 2017-06-23
- 3.0.0 (ts2.2) — 2017-06-02
- 1.1.28 (ts2.0) — 2016-09-19
- 1.1.40 — 2023-11-07
- 1.1.39 — 2023-10-18
- 3.0.9 — 2023-10-18
- 1.1.38 — 2023-09-27
- 3.0.8 — 2023-09-27
- 1.1.37 — 2021-07-08
- 1.1.36 — 2020-05-15
- … 19 more at https://npm.io/package/@types/react-spinkit/versions

## README

# Installation
> `npm install --save @types/react-spinkit`

# Summary
This package contains type definitions for react-spinkit (https://github.com/KyleAMathews/react-spinkit).

# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-spinkit.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-spinkit/index.d.ts)
````ts
/// <reference types="react" />

declare namespace spinner {
    export interface SpinnerProps {
        /**
         * Specify spinner to use.
         */
        name?:
            | "three-bounce"
            | "double-bounce"
            | "rotating-plane"
            | "folding-cube"
            | "wave"
            | "wandering-cubes"
            | "pulse"
            | "chasing-dots"
            | "circle"
            | "cube-grid"
            | "wordpress"
            | "ball-grid-beat"
            | "ball-grid-pulse"
            | "line-spin-fade-loader"
            | "ball-spin-fade-loader"
            | "ball-pulse-rise"
            | "line-scale"
            | "line-scale-pulse-out"
            | "line-scale-pulse-out-rapid"
            | "line-scale-party"
            | "ball-triangle-path"
            | "ball-scale-ripple-multiple"
            | "ball-pulse-sync"
            | "ball-beat"
            | "ball-scale-multiple"
            | "ball-zig-zag"
            | "ball-zig-zag-deflect"
            | "ball-clip-rotate"
            | "ball-clip-rotate-pulse"
            | "ball-clip-rotate-multiple"
            | "ball-scale-ripple"
            | "triangle-skew-spin"
            | "pacman"
            | undefined;
        /**
         * Set the time before the spinner fades in
         */
        fadeIn?: "full" | "half" | "quarter" | "none" | undefined;
        /**
         * Change the default "spinner" className.
         */
        overrideSpinnerClassName?: string | undefined;
        /**
         * Component className.
         */
        className?: string | undefined;
        /**
         * Programmatically set the color of the spinners (does not work
         * for circle or folding-cube); this can either be a hex value or a color word
         */
        color?: string | undefined;

        style?: React.CSSProperties | undefined;
    }

    export interface Spinner extends React.ComponentClass<SpinnerProps> {
    }
}

declare const spinner: spinner.Spinner;
export = spinner;

````

### Additional Details
 * Last updated: Tue, 07 Nov 2023 20:08:00 GMT
 * Dependencies: [@types/react](https://npmjs.com/package/@types/react)

# Credits
These definitions were written by [Qubo](https://github.com/tkqubo), [Mleko](https://github.com/mleko), [Tom Crockett](https://github.com/pelotom), and [zzanol](https://github.com/zzanol).

---
_Source: https://npm.io/package/@types/react-spinkit · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
