mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at tmp-rm-bitdrift 18 lines 334 B view raw
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}