gallery.badmanners.xyz/src/components/NoteTooltip.astro

16 lines
273 B
Text

---
type Props = {
id: number;
title: string;
text: string;
};
const { id, title, text } = Astro.props;
---
<Fragment>
<a class="decoration-dotted" id={`note-${id}`} href={`#note-${id}`} title={title} data-tooltip>
{text}
</a>
<sup>{id}</sup>
</Fragment>