Bluesky app fork with some witchin' additions 馃挮 witchsky.app
bluesky fork client
117
fork

Configure Feed

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

at a876aae44ea07494ebea9727350aa060b81f317b 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}