Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 0 additions & 24 deletions src/lib/components/ExternalLinkIcon.svelte

This file was deleted.

6 changes: 3 additions & 3 deletions src/lib/components/ExternalLinkWrapper.svelte
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script lang="ts">
import ExternalLinkIcon from '$lib/components/ExternalLinkIcon.svelte';
import { ExternalLink } from 'lucide-svelte';
interface Props {
url: string;
Expand All @@ -18,7 +18,7 @@
textSize = '',
textColorInDarkMode = 'dark:text-primary-500',
textOverflow = '',
iconSize = 4,
iconSize = 20,
ariaLabel = '',
useInlineFlex = true,
}: Props = $props();
Expand All @@ -36,7 +36,7 @@
</span>

<span class="ml-1.5">
<ExternalLinkIcon size={`w-${iconSize} h-${iconSize}`} />
<ExternalLink class=" text-primary-600 dark:text-gray-300" size={iconSize} />
</span>
</a>

Expand Down
Loading