Skip to content

Commit

Permalink
Update heroicons to v2.0.18
Browse files Browse the repository at this point in the history
  • Loading branch information
tniessen committed May 29, 2023
1 parent 35628a6 commit fa47228
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ echo "Generating app-resources.js"
done
echo " },"
echo " icons: {"
for icon in outline/database outline/download outline/folder outline/folder-open outline/information-circle outline/tag solid/document; do
for icon in outline/arrow-down-tray outline/circle-stack outline/folder outline/folder-open outline/information-circle outline/tag solid/document; do
echo -n " '$icon': \`"
cat "icons/optimized/$icon.svg"
cat "icons/optimized/24/$icon.svg"
echo "\`,"
done
echo " }"
Expand Down
2 changes: 1 addition & 1 deletion icons
Submodule icons updated 2708 files
6 changes: 3 additions & 3 deletions lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@
child.appendChild($.into(
$('span'),
[
icon('outline/database'),
icon('outline/circle-stack'),
sizeText
]
));
Expand Down Expand Up @@ -361,7 +361,7 @@
])
]);
const downloadButton = $.text($('button', ['border', 'p-2', 'shadow'], { type: 'button' }), 'Save');
const downloadButtonSvg = icon('outline/download');
const downloadButtonSvg = icon('outline/arrow-down-tray');
downloadButton.prepend(downloadButtonSvg);
downloadButton.addEventListener('click', () => {
tasks.add(`Preparing download: ${name}#${tag}`, async () => {
Expand Down Expand Up @@ -406,7 +406,7 @@
});
const buttons = $('div', ['mt-4']);
const downloadButton = $.text($('button', ['border', 'p-2', 'shadow'], { type: 'button' }), 'Save');
const downloadButtonSvg = icon('outline/download');
const downloadButtonSvg = icon('outline/arrow-down-tray');
downloadButton.prepend(downloadButtonSvg);
downloadButton.addEventListener('click', () => {
tasks.add(`Preparing download: ${name}`, async () => {
Expand Down

0 comments on commit fa47228

Please sign in to comment.