import { View } from '@/components/ui/view'; import { useColor } from '@/hooks/useColor'; import React from 'react'; import { ViewStyle } from 'react-native'; interface SeparatorProps { orientation?: 'horizontal' | 'vertical'; style?: ViewStyle; } export function Separator({ orientation = 'horizontal', style, }: SeparatorProps) { const borderColor = useColor('border'); return ( ); }