-
Notifications
You must be signed in to change notification settings - Fork 18
/
index.d.ts
42 lines (40 loc) · 873 Bytes
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import { Component } from "react";
interface Props {
/**
* Set progress bar background color
* Default value is #000
* @type {string}
*/
color?: string;
/**
* Set height of progress bar
* Default value is 5px
* @type {string}
*/
height?: string;
/**
* Set opacity from 0 to 1
* Default value is 1
* @type {string}
*/
opacity?: string;
/**
* Set value based on CSS z-index property
* Default value is 9999
* @type {string}
*/
zIndex?: string;
/**
* Progress bar with or without shadow
* Default value is false
* @type {boolean}
*/
shadow?: boolean;
/**
* Set top position of progress bar
* Default value is 0px
* @type {boolean}
*/
top?: string;
}
export default class Snakke extends Component<Props> {}