Add menu in ToolsFramework

This commit is contained in:
2023-10-11 18:29:23 +08:00
parent e67f9d14bf
commit 9d04773266
5 changed files with 221 additions and 1 deletions

8
src/ant-design.d.ts vendored Normal file
View File

@@ -0,0 +1,8 @@
import * as React from 'react'
import { CustomIconComponentProps } from '@ant-design/icons/es/components/Icon'
declare global {
type IconComponent =
| React.ComponentType<CustomIconComponentProps | React.SVGProps<SVGSVGElement>>
| React.ForwardRefExoticComponent<CustomIconComponentProps>
}