diff --git a/frontend/src/icons/checkIcon.tsx b/frontend/src/icons/checkIcon.tsx index 37b592a..27a1042 100644 --- a/frontend/src/icons/checkIcon.tsx +++ b/frontend/src/icons/checkIcon.tsx @@ -1,33 +1,33 @@ -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; +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;