mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-10 12:53:03 -05:00
18 lines
351 B
Plaintext
18 lines
351 B
Plaintext
---
|
|
import Default from '@astrojs/starlight/components/SiteTitle.astro';
|
|
import GitHubStats from './GitHubStats.svelte';
|
|
import MyIcon from './MyIcon.astro';
|
|
|
|
---
|
|
|
|
<Default {...Astro.props}>
|
|
<slot />
|
|
</Default>
|
|
|
|
<GitHubStats client:load >
|
|
<MyIcon name="star" slot="star" />
|
|
<MyIcon name="fork" viewBox="0 0 16 16" slot="fork"/>
|
|
</GitHubStats>
|
|
|
|
|