UNPKG

react-native-cn-quill

Version:
14 lines (13 loc) 416 B
import React from 'react'; import { View, StyleSheet } from 'react-native'; const defaultColor = '#737373'; export const ToolbarSeperator = ({ color }) => { return (React.createElement(View, { style: [styles.separator, { backgroundColor: color || defaultColor }] })); }; const styles = StyleSheet.create({ separator: { width: 1, marginTop: 4, marginBottom: 4, }, });