import { StyleSheet, Text, View } from 'react-native'; import { dividers } from './styles'; import type { IDividerProps } from './types'; export default function Divider(props: IDividerProps) { const { children, style } = props; return ( {children ? {children} : null} ); }