import { Ionicons } from '@expo/vector-icons'; import { Image, View } from 'react-native'; import { useTheme } from '~/utils/themeContext'; interface ArtworkProps { uri: string | null | undefined; size?: number; rounded?: boolean; } export function Artwork({ uri, size = 48, rounded = false }: ArtworkProps) { const { colors } = useTheme(); if (uri) { return ( ); } return ( ); }