1import {View} from 'react-native'
2
3import {atoms as a, useTheme, type ViewStyleProp} from '#/alf'
4
5export function Divider({style}: ViewStyleProp) {
6 const t = useTheme()
7
8 return (
9 <View style={[a.w_full, a.border_t, t.atoms.border_contrast_low, style]} />
10 )
11}