UNPKG
rifqiardian
Version:
latest (1.0.0)
1.0.0
component that always needed when create project
rifqiardian
/
Comon.js
9 lines
(8 loc)
•
275 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
import
React
from
'react'
;
import
{
View
}
from
'react-native'
;
import
{ color, style }
from
'_styles'
;
export
const
Divider
= (
props
) => {
return
(
<
View
style
=
{[{
height:
5
,
backgroundColor:
color.g200
,
marginHorizontal:
-10
},
props.style
]} />
) }