Skip to content

Commit

Permalink
chore: Switch to phosphor icons
Browse files Browse the repository at this point in the history
  • Loading branch information
stmh committed Dec 30, 2024
1 parent 82daf6f commit aebbb70
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
Binary file modified frontend/bun.lockb
Binary file not shown.
8 changes: 4 additions & 4 deletions frontend/src/components/start-stop-app-action.svelte
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<script lang="ts">
import Icon from '@iconify/svelte';
import play from '@iconify-icons/ph/play-circle-fill';
import stop from '@iconify-icons/ph/stop-circle-fill';
import unsupported from '@iconify-icons/heroicons/no-symbol';
import errorIcon from '@iconify-icons/heroicons/exclamation-triangle';
import play from '@iconify-icons/ph/play';
import stop from '@iconify-icons/ph/stop';
import unsupported from '@iconify-icons/ph/ghost';
import errorIcon from '@iconify-icons/ph/warning-octagon';
import { runApp, stopApp, updateAppInfo } from '../stores/appsStore';
import { monitorTask } from '../stores/tasksStore';
import type { TaskDetail } from '../types';
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/table-header-sort.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@

<button class="link" on:click={() => setSort(key)}
>{name}
{#if sortBy == key}<Icon class="float-right" icon="heroicons:arrow-small-up-solid" />
{#if sortBy == key}<Icon class="float-right" icon="ph:arrow-up" />
{/if}</button
>
2 changes: 1 addition & 1 deletion frontend/src/routes/dashboard/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import { apps } from '../../stores/appsStore';
import { loadApps } from '../../stores/appsStore';
import { writable } from 'svelte/store';
import MagnifyingGlass from '@iconify-icons/heroicons/magnifying-glass';
import MagnifyingGlass from '@iconify-icons/ph/magnifying-glass';
import StartStopAppAction from '../../components/start-stop-app-action.svelte';
import AppServiceButton from '../../components/app-service-button.svelte';
Expand Down
8 changes: 4 additions & 4 deletions frontend/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -218,10 +218,10 @@
resolved "https://registry.yarnpkg.com/@humanwhocodes/retry/-/retry-0.4.1.tgz#9a96ce501bc62df46c4031fbd970e3cc6b10f07b"
integrity sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==

"@iconify-icons/heroicons@^1.2.9":
version "1.2.9"
resolved "https://registry.yarnpkg.com/@iconify-icons/heroicons/-/heroicons-1.2.9.tgz#e795d586a0752e7b0e96860d117c732188b2b497"
integrity sha512-bZN3gLVVEQ9pVbvs15Vl2x9xSyOO8ZXRpWHo/qzlJLdB5VqNbw0Jgrmt4B1fLQexik6oKp/aau0eaddju7M7Tg==
"@iconify-icons/ph@^1.2.5":
version "1.2.5"
resolved "https://registry.yarnpkg.com/@iconify-icons/ph/-/ph-1.2.5.tgz#141fdf12ff8b3e6c36902074835f8e0cea9d001c"
integrity sha512-Ox2VkJDoFowrf0e74LlLUuLMiN73PsCN28MUx9wCQfyZAFrL8ntfBnMpzukfi/0vN9qpJKAiKYZ3dQ5JjBqt/A==
dependencies:
"@iconify/types" "*"

Expand Down

0 comments on commit aebbb70

Please sign in to comment.