import { Bucket } from "../types"; import { ArchiveIcon, ChartPie, ChartScatter } from "lucide-react"; import { readableBytes } from "@/lib/utils"; import Button from "@/components/ui/button"; type Props = { data: Bucket; }; const BucketCard = ({ data }: Props) => { return (
{data.globalAliases?.join(", ")}
{readableBytes(data.bytes)}
{data.objects}