mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
1import {View} from 'react-native'
2
3import {atoms as a, flatten, useTheme, ViewStyleProp} from '#/alf'
4
5export function Divider({style}: ViewStyleProp) {
6 const t = useTheme()
7
8 return (
9 <View
10 style={[
11 a.w_full,
12 a.border_t,
13 t.atoms.border_contrast_low,
14 flatten(style),
15 ]}
16 />
17 )
18}