import React from 'react'; import { StyleSheet, View } from 'react-native'; import useTheme from '../../context/theme/useTheme'; import type { CardDividerProps } from './types'; import { Box } from '../Box'; const Divider: React.FC = ({ height = 1, background = 'border', style = {}, sx }) => { const { colors } = useTheme(); return ( ); }; export default Divider;