import fileProgressStyles from "~/styles/components/file-progress.css?url"; interface FileProgressProps { fileName: string; fileSize?: string; progress: number; speed?: string; className?: string; } export function links() { return [{ rel: "stylesheet", href: fileProgressStyles }]; } export function FileProgress({ fileName, fileSize, progress, speed = "0KB/s", className = "" }: FileProgressProps) { return (