diff --git a/frontend/src/lib/components/IconButton.svelte b/frontend/src/lib/components/IconButton.svelte index f3b5544b2..35177832a 100644 --- a/frontend/src/lib/components/IconButton.svelte +++ b/frontend/src/lib/components/IconButton.svelte @@ -13,7 +13,6 @@ let loadingSize = size === 'btn-sm' ? 'loading-xs' as const : undefined; export let outline = variant !== 'btn-ghost'; export let fake = false; // for display purposes only - export let title: string | undefined = undefined; const xlIcons: IconString[] = ['i-mdi-refresh']; $: textSize = xlIcons.includes(icon) ? 'text-xl' : 'text-lg'; @@ -22,7 +21,6 @@