Skip to content

Commit

Permalink
feat(icons): use line-md download icon (#268)
Browse files Browse the repository at this point in the history
Signed-off-by: Adam Setch <[email protected]>
  • Loading branch information
setchy authored Nov 15, 2024
1 parent 3727055 commit ea3f33e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
"dependencies": {
"@astrojs/solid-js": "4.4.3",
"@astrojs/tailwind": "5.1.2",
"@iconify-json/line-md": "1.2.2",
"@iconify-json/mdi": "1.2.1",
"@kobalte/core": "0.13.7",
"@octokit/openapi-types": "22.2.0",
Expand Down
10 changes: 10 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/components/LatestRelease.astro
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ const { downloadLinks, version, releaseDate } = await loadInitialData();
class={`flex items-center mb-3 px-4 py-3 font-semibold text-white rounded-md bg-green-700 hover:bg-green-800 hover:text-white mr-4`}
>
<div class="flex flex-row gap-2 items-center">
<Icon name="mdi:cloud-download" size={24} />
<Icon name="line-md:cloud-alt-download-filled" size={24} />
<span>{item.name}</span>
</div>
</a>
Expand Down Expand Up @@ -141,7 +141,7 @@ const { downloadLinks, version, releaseDate } = await loadInitialData();
href={URLs.GITHUB.LATEST_RELEASE}
>
<div class="flex flex-row gap-2 items-center">
<Icon name="mdi:cloud-download" size={24} />
<Icon name="line-md:cloud-alt-download-filled" size={24} />
<span>View GitHub Releases</span>
</div>
</a>
Expand Down

0 comments on commit ea3f33e

Please sign in to comment.