import type { CSSProperties } from 'react'; import { useHighlight } from '../../../highlight/index.js'; import { useFormatNumberByNucleus } from '../../../hooks/useFormatNumberByNucleus.js'; const styles: Record<'container' | 'errorLabel', CSSProperties> = { container: { position: 'inherit', padding: '0.15rem 0.4rem', }, errorLabel: { color: 'red', }, }; interface AnalysisCellProps { columnKey: string; value: any; activeTab: string; } function AnalysisCell({ columnKey, value, activeTab }: AnalysisCellProps) { const highlight = useHighlight([columnKey]); const format = useFormatNumberByNucleus(activeTab); return (