UNPKG
retabler
Version:
alpha (0.0.1-alpha.3)
latest (0.0.1-alpha.0)
0.0.1-alpha.3
0.0.1-alpha.2
0.0.1-alpha.1
0.0.1-alpha.0
React Component library via Tabler
retabler
/
build
/
Spinners
/
index.d.ts
11 lines
(10 loc)
•
303 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
/// <reference types="react" />
import
{
Color
}
from
"../common"
;
export
interface
SpinnerProps
{
className
?:
string
;
color
?:
Color
;
size
?:
"sm"
;
grow
?:
boolean
; }
declare
const
Spinner
:
(
{ className, color, size, grow }:
SpinnerProps
) =>
JSX
.
Element
;
export
default
Spinner
;