refactor(component): input component (#2275)

This commit is contained in:
Himself65
2023-05-09 10:39:39 +08:00
committed by GitHub
parent cba3293326
commit 53db6a6e9d
7 changed files with 97 additions and 70 deletions
@@ -1,7 +1,7 @@
import type { SvgIconProps } from '@mui/material/SvgIcon';
import SvgIcon from '@mui/material/SvgIcon';
import { memo } from 'react';
export const EmptySvg = (_props: SvgIconProps) => {
export const EmptySvg = memo(function EmptySvg() {
return (
<SvgIcon
width="200"
@@ -411,4 +411,4 @@ export const EmptySvg = (_props: SvgIconProps) => {
</defs>
</SvgIcon>
);
};
});