import React from 'react'; import { View } from 'react-native'; import { useTheme } from '../../theme/useTheme'; import type { DividerProps } from './Divider.types'; export const Divider: React.FC = ({ orientation = 'horizontal', thickness = 1, color, spacing, style, }) => { const theme = useTheme(); const dividerColor = color || theme.colors.border; const dividerSpacing = spacing ?? theme.spacing.sm; const isHorizontal = orientation === 'horizontal'; return ( ); };