import UsageBar from "../resources/usage-bar"; import WidgetIcon from "./widget_icon"; import ResourceValue from "./resource_value"; import ResourceLabel from "./resource_label"; import Raw from "./raw"; export default function SingleResource({ children, key, expanded = false }) { const values = children.filter(child => child.type === ResourceValue); const labels = children.filter(child => child.type === ResourceLabel); return