UNPKG
react-native-material-buttons
Version:
latest (0.6.0)
0.6.0
0.5.0
0.4.1
0.4.0
0.3.1
0.3.0
0.2.6
0.2.5
0.2.4
0.2.3
0.2.2
0.2.1
0.2.0
0.1.2
0.1.1
0.1.0
Material buttons
n4kz/react-native-material-buttons
react-native-material-buttons
/
src
/
components
/
raised-button
/
styles.js
18 lines
(14 loc)
•
276 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { StyleSheet, Platform }
from
'react-native'
;
const
styles
= StyleSheet.
create
({
container
: {
height
:
36
,
minWidth
:
88
,
paddingHorizontal
:
16
, ...Platform.
select
({
android
: {
elevation
:
2
, }, }), }, }); export { styles };