/* * Copyright (c) 2026 by Christian Kellner. * Licensed under Apache-2.0 with Commons Clause and Attribution/Naming Clause */ import { Card, Typography, Space } from '@douyinfe/semi-ui-19'; import './DashboardCard.less'; export default function KpiCard({ title, icon, value, description, color = 'gray', children }) { const { Text } = Typography; return (
{icon}
{title}
{value} {children}
{description && ( {description} )}
); }