import { StyleConstants } from '@utils/styles/constants' import { useTheme } from '@utils/styles/ThemeManager' import React from 'react' import { StyleProp, StyleSheet, View, ViewStyle } from 'react-native' export interface Props { extraMarginLeft?: number extraMarginRight?: number style?: StyleProp } const ComponentSeparator: React.FC = ({ extraMarginLeft = 0, extraMarginRight = 0, style }) => { const { colors } = useTheme() return ( ) } export default ComponentSeparator