import React from 'react'; import {StyleProp, StyleSheet, View, ViewStyle} from 'react-native'; import useColors from '@/hooks/useColors'; interface IDividerProps { vertical?: boolean; style?: StyleProp; } export default function Divider(props: IDividerProps) { const {vertical, style} = props; const colors = useColors(); return ( ); } const css = StyleSheet.create({ divider: { width: '100%', height: 1, }, dividerVertical: { height: '100%', width: 1, }, });