this repo has no description
0
fork

Configure Feed

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

at e28f6d2f370b4e882ed6f23d08ca0f8d94dbac5f 11 lines 270 B view raw
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}