15 lines
208 B
Plaintext
15 lines
208 B
Plaintext
---
|
|
const { href, class: className, ...props } = Astro.props;
|
|
---
|
|
|
|
<a
|
|
href={href}
|
|
class:list={[
|
|
"underline",
|
|
"text-blue",
|
|
"hover:text-lavender",
|
|
"visited:text-mauve",
|
|
className,
|
|
]}><slot /></a
|
|
>
|