UNPKG
deep-react-ui
Version:
latest (1.0.0)
1.0.0
It's a UI Library build up on react
github.com/Deepanshu-cell/deep-ui
Deepanshu-cell/deep-ui
deep-react-ui
/
dist
/
index.d.ts
9 lines
(6 loc)
•
158 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
React
from
'react'
;
interface
ButtonProps
{
label
:
string
; }
declare
const
Button
:
(
props
:
ButtonProps
) =>
React
.
JSX
.
Element
;
export
{
Button
};