├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── Test.astro ├── package.json └── src └── env.d.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeanMcP/astro-heroicons/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeanMcP/astro-heroicons/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeanMcP/astro-heroicons/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeanMcP/astro-heroicons/HEAD/README.md -------------------------------------------------------------------------------- /Test.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeanMcP/astro-heroicons/HEAD/Test.astro -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeanMcP/astro-heroicons/HEAD/package.json -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- 1 | /// --------------------------------------------------------------------------------