UNPKG
@dojima-ui/button
Version:
latest (1.0.9-alpha.17)
1.0.9-alpha.17
1.0.9-alpha.16
1.0.9-alpha.15
1.0.9-alpha.14
1.0.9-alpha.13
1.0.9-alpha.12
1.0.9-alpha.11
1.0.9-alpha.10
1.0.9-alpha.9
1.0.9-alpha.8
1.0.9-alpha.7
1.0.9-alpha.6
1.0.9-alpha.5
1.0.9-alpha.4
1.0.9-alpha.3
1.0.9-alpha.2
1.0.9-alpha.0
1.0.8
1.0.7
1.0.6
button used for dojima webpages.
github.com/dojimanetwork/dojima-ui
dojimanetwork/dojima-ui
@dojima-ui/button
/
dist
/
NeuButton.d.ts
9 lines
(8 loc)
•
278 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
/// <reference types="react" />
import
{
ButtonComponentProps
}
from
'@dojima-ui/types'
;
interface
NeuButtonProps
extends
ButtonComponentProps
{
width
?:
string
;
height
?:
string
; }
declare
function
NeuButton
(
props
:
NeuButtonProps
):
JSX
.
Element
;
export
default
NeuButton
;