Files
dupe/client/src/components/TorrentItem.svelte
2025-10-21 18:43:21 +03:00

11 lines
309 B
Svelte

<script>
export let t;
</script>
<div class="torrent">
<div style="flex:1">
<div style="font-weight:600;">{t.name}</div>
<div class="progress"><div style="width:{t.progress * 100}%"></div></div>
<div class="small">{Math.round(t.progress * 100)}% - {t.downloadSpeed} KB/s</div>
</div>
</div>