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