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
/
types.d.ts
12 lines
(11 loc)
•
295 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{
CSSProperties
,
MouseEventHandler
}
from
"react"
;
export
interface
CommonProps
{
id
?:
string
;
className
?:
string
;
style
?:
CSSProperties
;
onClick
?:
MouseEventHandler
; }
export
interface
CommonControlProps
extends
CommonProps
{
name
?:
string
;
disabled
?:
boolean
; }