-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
40 lines (32 loc) · 825 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
import React, { ReactNode } from 'react'
declare type CloseHandler = () => void
declare type CSSProperties = React.CSSProperties
declare interface Props {
/**
* Children to make up the popup.
*/
children?: ReactNode
/**
* Tha prompt state, make true to make the prompt appear.
*/
visible: boolean
/**
* Function called when closing. It is recommended to update your visible state to false on this callback.
*/
onClose: CloseHandler
/**
* The duration of the animations in ms.
* @default 100
*/
animationDuration?: number
/**
* Override styling to the popup div. Per default it has 40px padding & 10px border-radius.
*/
style?: CSSProperties
/**
* Classname to add to the popup div.
*/
className?: string
}
declare const Popup: React.FC<Props>
export = Popup