An ATproto social media client -- with an independent Appview.

refactor: replace View with Button in ViewMoreCard for consistent colors across themes

Updated ViewMoreCard to use a Button component instead of a styled View
for the 'View more' action. This improves accessibility and consistency
with other interactive elements in TrendingVideos.

+6 -12
+6 -12
src/components/interstitials/TrendingVideos.tsx
··· 219 219 <Text style={[a.text_md]}> 220 220 <Trans>View more</Trans> 221 221 </Text> 222 - <View 223 - style={[ 224 - a.align_center, 225 - a.justify_center, 226 - a.rounded_full, 227 - { 228 - width: 34, 229 - height: 34, 230 - backgroundColor: t.palette.primary_500, 231 - }, 232 - ]}> 222 + <Button 223 + color="primary" 224 + size="small" 225 + shape="round" 226 + label={_(msg`View more trending videos`)}> 233 227 <ButtonIcon icon={ChevronRight} /> 234 - </View> 228 + </Button> 235 229 </View> 236 230 )} 237 231 </Link>