import React from 'react'; import { Surface } from './primitives/Surface'; import { Box } from './primitives/Box'; import { Text } from './Text'; import { Icon } from './Icon'; import { LucideIcon } from 'lucide-react'; export interface StatBoxProps { label: string; value: string | number; icon: LucideIcon; intent?: 'primary' | 'success' | 'warning' | 'critical' | 'telemetry' | 'low'; } export const StatBox = ({ label, value, icon, intent = 'primary' }: StatBoxProps) => { return ( {label} {value} ); };