import classNames from "classnames"; import prettyBytes from "pretty-bytes"; export default function Pool({ name, free, allocated, healthy }) { const total = free + allocated; const usedPercent = Math.round((allocated / total) * 100); const statusColor = healthy ? "bg-green-500" : "bg-yellow-500"; return (