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