feat: add initial project setup and first draft
This commit is contained in:
12
src/components/external-link.astro
Normal file
12
src/components/external-link.astro
Normal file
@@ -0,0 +1,12 @@
|
||||
---
|
||||
const { ariaLabel, cssClass, href } = Astro.props;
|
||||
---
|
||||
|
||||
<a
|
||||
aria-label={ariaLabel}
|
||||
class:list={[
|
||||
cssClass,
|
||||
"flex min-w-full items-center gap-4 rounded px-6 py-2 text-lg sm:px-24",
|
||||
]}
|
||||
{href}><slot /></a
|
||||
>
|
||||
Reference in New Issue
Block a user