import React from 'react';
import Icon, { HomeOutlined } from '@ant-design/icons';
import type { CustomIconComponentProps } from '@ant-design/icons/lib/components/Icon';
import { Space } from 'antd';
const HeartSvg = () => (
);
const PandaSvg = () => (
);
const HeartIcon = (props: Partial) => (
);
const PandaIcon = (props: Partial) => (
);
const App: React.FC = () => (
} />
);
export default App;