noahsw.xyz/src/components/Link.astro
2024-04-14 23:23:24 -05:00

14 lines
328 B
Text

---
import type { HTMLAttributes } from "astro/types";
import cn from "@/scripts/cn";
const { class: cls, ...rest }: HTMLAttributes<"a"> = Astro.props;
---
<a
class={cn(
"underline underline-offset-4 hover:underline-offset-8 hover:text-white transition-all duration-300 p-3",
cls,
)}
{...rest}><slot /> →</a
>