import { IconProps } from '@chakra-ui/react'; import MyIcon from '@fastgpt/web/components/common/Icon'; import type { IconNameType } from '@fastgpt/web/components/common/Icon/type'; function IconButton({ name, w = '1rem', h = '1rem', ...props }: { name: IconNameType; } & IconProps) { return ( ); } export default IconButton;