import React from "react"; import { Panel } from "../UI/Panel"; export const KpiCard = ({ label, value, hint }) => { return (

{label}

{value} {hint &&

{hint}

}
); };