Skip to content

Commit

Permalink
fix(console-fb): move missing icons
Browse files Browse the repository at this point in the history
  • Loading branch information
xmlking committed Feb 3, 2024
1 parent 16315f6 commit 776dc53
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions apps/console-fb/src/lib/blocks/side/SideMenu.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import {
ArrowRightToBracketOutline,
BellOutline,
ChartPieOutline,
PieChartSolid,
ClipboardListOutline,
CogOutline,
ComputerSpeakerOutline,
Expand Down Expand Up @@ -36,7 +36,7 @@
<!-- <SidebarBrand site={{ name: 'Datablocks',href: '/',img: '/logos/6-1.svg' }}/>-->
<SidebarItem href="/dashboard" label="Dashboard">
<svelte:fragment slot="icon"
><ChartPieOutline size="md" class="mr-2 text-red-500 dark:text-blue-500" />
><PieChartSolid size="md" class="mr-2 text-red-500 dark:text-blue-500" />
<!-- <ChartPieOutline" class="mr-2 text-red-500 dark:text-blue-500" /> -->
</svelte:fragment>
</SidebarItem>
Expand Down
4 changes: 2 additions & 2 deletions apps/console-fb/src/lib/components/toast/Toasts.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import { CloseButton } from 'flowbite-svelte';
import {
CheckSolid,
CloseCircleSolid,
CircleCheckSolid,
ExclamationCircleOutline,
InfoCircleOutline
} from 'flowbite-svelte-icons';
Expand Down Expand Up @@ -54,7 +54,7 @@
{#if toast.type === ToastLevel.Success}
<CheckSolid size="xs" ariaLabel="Success icon" />
{:else if toast.type === ToastLevel.Error}
<CloseCircleSolid size="xs" ariaLabel="Error icon" />
<CircleCheckSolid size="xs" ariaLabel="Error icon" />
{:else if toast.type === ToastLevel.Warning}
<ExclamationCircleOutline size="xs" ariaLabel="Warning icon" />
{:else}
Expand Down

0 comments on commit 776dc53

Please sign in to comment.