mirror of
https://github.com/baairon/torlink.git
synced 2026-07-08 18:28:22 +02:00
Curated, multi-source torrent search and download from the terminal: concurrent search across built-in sources with streamed, source-tagged results; a download-only webtorrent engine with true pause/resume and restart recovery; magnet paste; and a calm Ink + React TUI. No indexer server, no setup.
7 lines
188 B
TypeScript
7 lines
188 B
TypeScript
import { Text } from "ink";
|
|
import { RULE } from "../theme";
|
|
|
|
export function Rule({ width }: { width: number }) {
|
|
return <Text color={RULE}>{"─".repeat(Math.max(1, width))}</Text>;
|
|
}
|