fix: use ionicons

This commit is contained in:
Fredrik Burmester
2024-12-19 14:18:53 +01:00
parent 7a26b5004b
commit 584fcc09d6

View File

@@ -125,21 +125,15 @@ export const SeasonPicker: React.FC<Props> = ({ item, initialSeasonIndex }) => {
}}
/>
<DownloadItems
title="Download Season"
subtitle={`${episodes?.length} episodes`}
className="ml-2"
items={episodes || []}
MissingDownloadIconComponent={() => (
<MaterialCommunityIcons
name="download-multiple"
size={20}
color="white"
/>
<Ionicons name="download" size={20} color="white" />
)}
DownloadedIconComponent={() => (
<MaterialCommunityIcons
name="check-all"
size={20}
color="#9333ea"
/>
<Ionicons name="checkbox-sharp" size={20} color="#9333ea" />
)}
/>
</View>