import { Typography, type TypographyProps } from '@mui/material' import type { ReactNode } from 'react' export interface ValueProps { children: ReactNode /** Override the default `text.primary` color — useful for sparkline tints. */ color?: string TypographyProps?: TypographyProps } /** * Value slot for a Formula KPI — large, bold, primary text color. Composable * building block for custom formula layouts; the canonical {@link FormulaUI} * renders one of these per item. */ export function Value({ children, color, TypographyProps }: ValueProps) { return ( {children} ) }