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