--- import { ProfileIcon } from '../Icons'; export interface Props { type: 'photo' | 'initials'; name: string; image?: string; } const { type, name, image } = Astro.props; ---