使用svg
自定義icon
// custem icon tsx
import Icon from '@ant-design/icons';
import type { CustomIconComponentProps } from '@ant-design/icons/lib/components/Icon';
import { ReactComponent as home} from '@/assets/svg/home.svg'
export const HomeIcon = (props: Partial<CustomIconComponentProps>) => <Icon component={home} {...props} />
// use icon tsx
import { HomeIcon } from '@/components/custem.tsx'
const App:FC = () => {
return <HomeIcon />
}