import { Box } from '@mui/material'; import React from 'react'; // 定义你的图标属性类型,这里可以扩展成任何你需要的属性 interface CustomIconProps { size?: number | string; color?: string; // ...其他你需要的props } // 创建你的自定义SVG图标组件 const checkIcon: React.FC = ({ size = '100%', color = 'currentColor', }) => { return ( ); }; export default checkIcon;