Fill in the blank:
---
/*
Mukul's Personal Website is a Website
Copyright (C) 2025 Mukul Kedia
Mukul's Personal Website is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Mukul's Personal Website is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with Mukul's Personal Website. If not, see <https://www.gnu.org/licenses/>.
*/
interface Props {
label: string;
src: string;
tags: string[];
}
const { label, src, tags } = Astro.props;
const Image = // ???
---
<li class="list-row">
<Image class="size-10" />
<div>
<div class="-translate-y-1 font-bold">{label}</div>
<div class="flex gap-2">
{tags.map((tag) => <div class="badge badge-primary badge-sm font-semibold">{tag}</div>)}
</div>
</div>
</li>