import { StyleConstants } from '@utils/styles/constants' import { useTheme } from '@utils/styles/ThemeManager' import { View, ViewStyle } from 'react-native' const Hr: React.FC<{ style?: ViewStyle }> = ({ style }) => { const { colors } = useTheme() return ( ) } export default Hr