react-native-cn-richtext-editor
Version:
RichText Editor for React-Native
25 lines (21 loc) • 502 B
JavaScript
import React, { Component } from 'react';
import {
View,
TouchableWithoutFeedback,
TouchableHighlight,
Text,
StyleSheet
} from 'react-native'
const defaultColor = '#737373'
export const CNSeperator = (props) => {
return (
<View style={[styles.separator, { backgroundColor: props.color || defaultColor}]} />
)
}
const styles = StyleSheet.create({
separator: {
width: 2,
marginTop: 1,
marginBottom: 1,
},
});