import React from 'react'; import { View, ViewStyle } from 'react-native'; import { useAppTheme } from '@theme'; import { getStyles } from './divider.styles'; interface DividerProps { color?: string; thickness?: number; style?: ViewStyle; } export const Divider: React.FC = ({ color, thickness = 1, style, }) => { const { colors } = useAppTheme(); const styles = getStyles(colors); return ( ); }; export default Divider;