/* * Copyright (c) 2025 by Christian Kellner. * Licensed under Apache-2.0 with Commons Clause and Attribution/Naming Clause */ /* * Copyright (c) 2025 by Christian Kellner. * Licensed under Apache-2.0 with Commons Clause and Attribution/Naming Clause */ import React from 'react'; import './DashboardCard.less'; export default function KpiCard({ title, icon, value, valueFontSize = '1.5rem', description, color = 'gray', children, }) { return (
{icon}
{title}

{value} {children}

{description && {description}}
); }