import { ReactNode } from "react"; import "./MiniStats.css"; import { getCN, isMasive } from "../utils"; function MiniStats({ children, background = true, ...props }: { [x: string]: any; }) { return (
{isMasive(children) ? ( children.map((a: any, index: any) => (
{a}
)) ) : (
{children}
)}
); } export default MiniStats;