import { Database, HardDrive } from "lucide-react"; import { ByteSize } from "~/components/bytes-size"; import { Card, CardContent, CardHeader, CardTitle } from "~/components/ui/card"; import type { StatFs } from "~/lib/types"; type Props = { statfs: StatFs; }; export function StorageInfoCard({ statfs }: Props) { return ( Storage Details
Total Capacity
Used Space
Free Space
); }