Files
website-astro-stefanimhoff.de/src/components/DownloadLink.astro
2023-04-24 15:14:07 +02:00

24 lines
511 B
Plaintext

---
import { Sprite } from 'astro-icon';
import { TextLink } from '../components';
export interface Props {
href: string;
text: string;
}
const { href, text, ...props } = Astro.props;
---
<TextLink class="group" href={href} {...props}>
{text}
<span class="more-icon relative inline-flex mis-[0.2em] block-start-[0.2em]">
<Sprite
name="ri:download-line"
aria-hidden="true"
class="h-icon w-icon group-hover:translate-y-1 transition-transform duration-500 ease-in-out"
/>
</span>
</TextLink>