import Title from '@/pages/home/components/Title'; import React from 'react'; import './index.less'; type StatisticsItem = { name: string; value: number | string; children: React.ReactNode | string; permission?: any; }; interface StatisticsProps { extra?: React.ReactNode | string; style?: any; height?: any; data: StatisticsItem[]; title: string; } const defaultImage = require('/public/images/home/top-1.svg'); const Statistics = (props: StatisticsProps) => { return (