import React from 'react' import { View } from 'react-native' import { ISeparatorProps } from './types' const Separator = ({ color, height, width, marginLeft, marginVertical, }: ISeparatorProps) => { return ( ) } export default Separator