├── .gitignore ├── README.md ├── components ├── Icon.astro ├── Image.astro └── index.ts ├── index.ts ├── package.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | yarn-error.log 3 | dist 4 | public -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonSyonII/astro-preload/HEAD/README.md -------------------------------------------------------------------------------- /components/Icon.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonSyonII/astro-preload/HEAD/components/Icon.astro -------------------------------------------------------------------------------- /components/Image.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonSyonII/astro-preload/HEAD/components/Image.astro -------------------------------------------------------------------------------- /components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonSyonII/astro-preload/HEAD/components/index.ts -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonSyonII/astro-preload/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonSyonII/astro-preload/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonSyonII/astro-preload/HEAD/yarn.lock --------------------------------------------------------------------------------