UNPKG

react-native-cn-richtext-editor

Version:
25 lines (21 loc) 502 B
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, }, });