---
export interface Props {
id?: string;
href: string;
class?: string;
ariaLabel?: string;
title?: string;
disabled?: boolean;
}
const {
id,
href,
class: className = "",
ariaLabel,
title,
disabled = false,
} = Astro.props;
---
{
disabled ? (
) : (
)
}