- {column.title}
- {`${Math.round(100 * itemValue)}%`}
+
+ {typeof renderItem === 'function' ? renderItem({ item: column, value: itemValue, valueStr, el, index }) : el}
{index < columns.length - 1 && (
@@ -65,7 +71,7 @@ const ColumnSplit = ({ columns = [], className, readOnly, disabled, ...props })
)}
-
+