import { Database, HardDrive, Cloud } from "lucide-react"; import type { RepositoryBackend } from "~/schemas/restic"; type Props = { backend: RepositoryBackend; className?: string; }; export const RepositoryIcon = ({ backend, className = "h-4 w-4" }: Props) => { switch (backend) { case "local": return ; case "s3": return ; case "gcs": return ; default: return ; } };