import { Avatar, DefaultMantineColor, useMantineTheme } from '@mantine/core'; export const AppAvatar = ({ iconUrl, color, }: { iconUrl: string; color?: DefaultMantineColor | undefined; }) => { const { colors, colorScheme } = useMantineTheme(); return ( ); };