mirror of
https://github.com/LukeHagar/unicorn-utterances.git
synced 2025-12-06 04:21:55 +00:00
19 lines
218 B
Plaintext
19 lines
218 B
Plaintext
---
|
|
export interface Props {
|
|
name: string;
|
|
href: string;
|
|
}
|
|
|
|
const { name, href } = Astro.props;
|
|
---
|
|
|
|
<div class="author">
|
|
<p><a {href}>{name}</a></p>
|
|
</div>
|
|
|
|
<style>
|
|
.author {
|
|
margin-bottom: 0.75rem;
|
|
}
|
|
</style>
|