UNPKG
ts-trial
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
React Ui Components for Freemium Apps
github.com/RyderKishan/ts-trial
RyderKishan/ts-trial
ts-trial
/
core
/
Input
/
Input.d.ts
12 lines
(11 loc)
•
228 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
/// <reference types="react" />
export
interface
ButtonInputProps
{
value
:
string
; }
declare
const
Input
: { (
props
:
ButtonInputProps
):
JSX
.
Element
;
defaultProps
: {
value
:
any
; }; };
export
default
Input
;