feat: replace SVG icons with Lucide components across various Svelte components for improved consistency and maintainability

This commit is contained in:
2025-12-04 14:30:31 -03:00
parent a3d9e782af
commit 88f25dc6ab
21 changed files with 457 additions and 2921 deletions

View File

@@ -1,6 +1,7 @@
<script lang="ts">
import { resolve } from '$app/paths';
import SystemMonitorCardLocal from '$lib/components/ti/SystemMonitorCardLocal.svelte';
import { Monitor, ArrowLeft } from 'lucide-svelte';
</script>
<div class="container mx-auto max-w-7xl px-4 py-6">
@@ -8,20 +9,7 @@
<div class="mb-8 flex items-center justify-between">
<div class="flex items-center gap-4">
<div class="from-primary/20 to-primary/10 rounded-2xl bg-linear-to-br p-3">
<svg
xmlns="http://www.w3.org/2000/svg"
class="text-primary h-10 w-10"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M9 3v2m6-2v2M9 19v2m6-2v2M5 9H3m2 6H3m18-6h-2m2 6h-2M7 19h10a2 2 0 002-2V7a2 2 0 00-2-2H7a2 2 0 00-2 2v10a2 2 0 002 2zM9 9h6v6H9V9z"
/>
</svg>
<Monitor class="text-primary h-10 w-10" strokeWidth={2} />
</div>
<div>
<h1 class="text-primary text-4xl font-bold">
@@ -33,20 +21,7 @@
</div>
</div>
<a href={resolve('/ti')} class="btn">
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-5 w-5"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M10 19l-7-7m0 0l7-7m-7 7h18"
/>
</svg>
<ArrowLeft class="h-5 w-5" strokeWidth={2} />
Voltar
</a>
</div>