---
import { Icon } from "astro-icon/components";
interface Props {
id?: string;
title?: string | undefined;
icon?: string;
class?: string;
ariaLabel?: string;
}
const { title, icon, class: className, ariaLabel, id } = Astro.props;
---
{/* ------------------------------------------- HTML ------------------------------------------- */}
{/* ------------------------------------------- CSS -------------------------------------------- */}