--- import { Icon } from 'astro-icon/components'; import Logo from '@components/ui/logos/Logo.astro'; interface Props { topic: string; area: string; date: string; url: string; logoUrlLight?: string; logoUrlDark?: string; logoIcon?: string; } const { topic, area, date, url, logoUrlLight, logoUrlDark, logoIcon } = Astro.props; ---