UNPKG
@safewaystore/native-ui
Version:
latest (0.0.1)
0.0.1
A awesome React Native UI by SafeWay Store.
safewaystore.github.io/native-ui/
safewaystore/native-ui
@safewaystore/native-ui
/
src
/
components
/
button
/
types.d.ts
12 lines
(10 loc)
•
248 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{
View
}
from
'react-native'
;
export
type
IProps
=
React
.
ComponentProps
<
typeof
View
> & {
color
?:
string
;
disabled
?:
boolean
;
loading
?:
string
|
boolean
;
onPress
?:
() =>
void
;
rounded
?:
boolean
;
text
?:
string
; };