UNPKG

myprojectpackageprav

Version:
12 lines 1.01 kB
import { dashboardkpis } from './dashboard-kpis-data'; import "./dashboard-kpis.css"; export default function Dashboardkpis() { return (React.createElement(React.Fragment, null, React.createElement("div", { className: 'row' }, dashboardkpis.map(function (dashboardkpis) { return React.createElement("div", { className: 'col' }, React.createElement("a", { tabIndex: 0, title: "".concat(dashboardkpis.title, " ").concat(dashboardkpis.count), className: "shadow card p-0 w-100 d-flex kpiborder justify-content-between card-body h-100", "status-kpis": dashboardkpis.kpicode }, React.createElement("h2", { className: 'dashboard-kpi-title p-2 ps-3 darktext d-flex align-items-center poppins-bold font-14' }, dashboardkpis.title), React.createElement("h2", { className: "border-left1 p-2 px-3 color-primary d-flex align-items-center poppins-bold font-22" }, dashboardkpis.count))); })))); } //# sourceMappingURL=dashboard-kpis.js.map