UNPKG
@bottledbrains/ui
Version:
latest (0.23.0)
0.23.0
0.22.5
0.22.3
0.22.2
0.22.0
0.21.0
0.20.5
0.20.4
0.20.3
0.20.2
0.20.1
0.20.0
0.19.1
0.18.5
0.18.4
0.18.3
0.18.2
0.18.1
0.18.0
0.17.3
0.17.2
0.17.1
0.16.1
0.15.4
0.15.3
0.15.2
0.15.1
0.14.4
0.14.3
0.14.2
0.14.1
0.0.14
A React UI library based on Tailwind CSS
bottledbrains-ui.vercel.app
SouthpawGoblin/bottledbrains-ui
@bottledbrains/ui
/
lib
/
components
/
Modal
/
index.d.ts
10 lines
(9 loc)
•
261 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
FC
}
from
'react'
;
import
{
CommonProps
}
from
'../../types'
;
export
interface
ModalProps
extends
CommonProps
{
visible
:
boolean
;
onBackdropClick
?:
() =>
void
;
noPanel
?:
boolean
; }
declare
const
Modal
:
FC
<
ModalProps
>;
export
default
Modal
;