This repository has been archived on 2025-03-28. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
coryd.dev-astro/src/components/blocks/Modal.astro

25 lines
551 B
Text

---
import { md } from "@utils/helpers/general.js";
import { IconCircleX, IconInfoCircle } from "@tabler/icons-react";
const { content, id } = Astro.props;
---
<>
<input
class="modal-input"
id={id}
type="checkbox"
tabindex="0"
/>
<label class="modal-toggle" for={id}>
<IconInfoCircle size={24} />
</label>
<div class="modal-wrapper">
<div class="modal-body">
<label class="modal-close" for={id}>
<IconCircleX size={24} />
</label>
<div set:html={md(content)}></div>
</div>
</div>
</>