import React, { useContext } from 'react'; import { View, ViewStyle } from 'react-native'; import { ApplicationContext } from '../Context'; import { Spacing } from '../Consts'; import Svg, { Line } from 'react-native-svg'; export interface DashDividerProps { /** * Custom styles for dash divider */ style?: ViewStyle; } const DashDivider: React.FC = ({ style }) => { const { theme } = useContext(ApplicationContext); const borderColor = theme.colors.border.default; return ( ); }; export { DashDivider };