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