Files
unicorn-utterances/src/components/Author.astro
2022-09-21 14:14:21 -07:00

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>