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 33 lines 830 B view raw
1import {View} from 'react-native' 2 3import {atoms as a, useTheme} from '#/alf' 4import {type Props, useCommonSVGProps} from '#/components/icons/common' 5import {Loader_Stroke2_Corner0_Rounded as Icon} from '#/components/icons/Loader' 6 7export function Loader(props: Props) { 8 const t = useTheme() 9 const common = useCommonSVGProps(props) 10 11 return ( 12 <View 13 style={[ 14 a.relative, 15 a.justify_center, 16 a.align_center, 17 {width: common.size, height: common.size}, 18 ]}> 19 {/* css rotation animation - /bskyweb/templates/base.html */} 20 <div className="rotate-500ms"> 21 <Icon 22 {...props} 23 style={[ 24 a.absolute, 25 a.inset_0, 26 t.atoms.text_contrast_high, 27 props.style, 28 ]} 29 /> 30 </div> 31 </View> 32 ) 33}