Skip to content

Commit ea3f33e

Browse files
authored
feat(icons): use line-md download icon (#268)
Signed-off-by: Adam Setch <[email protected]>
1 parent 3727055 commit ea3f33e

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
"dependencies": {
5151
"@astrojs/solid-js": "4.4.3",
5252
"@astrojs/tailwind": "5.1.2",
53+
"@iconify-json/line-md": "1.2.2",
5354
"@iconify-json/mdi": "1.2.1",
5455
"@kobalte/core": "0.13.7",
5556
"@octokit/openapi-types": "22.2.0",

pnpm-lock.yaml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/LatestRelease.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ const { downloadLinks, version, releaseDate } = await loadInitialData();
108108
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`}
109109
>
110110
<div class="flex flex-row gap-2 items-center">
111-
<Icon name="mdi:cloud-download" size={24} />
111+
<Icon name="line-md:cloud-alt-download-filled" size={24} />
112112
<span>{item.name}</span>
113113
</div>
114114
</a>
@@ -141,7 +141,7 @@ const { downloadLinks, version, releaseDate } = await loadInitialData();
141141
href={URLs.GITHUB.LATEST_RELEASE}
142142
>
143143
<div class="flex flex-row gap-2 items-center">
144-
<Icon name="mdi:cloud-download" size={24} />
144+
<Icon name="line-md:cloud-alt-download-filled" size={24} />
145145
<span>View GitHub Releases</span>
146146
</div>
147147
</a>

0 commit comments

Comments
 (0)