You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
406 B
18 lines
406 B
2 years ago
|
import React from 'react';
|
||
|
import { createFromIconfontCN } from '@ant-design/icons';
|
||
|
import { Space } from 'antd';
|
||
|
|
||
|
const IconFont = createFromIconfontCN({
|
||
|
scriptUrl: '//at.alicdn.com/t/font_8d5l8fzk5b87iudi.js',
|
||
|
});
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<Space>
|
||
|
<IconFont type="icon-tuichu" />
|
||
|
<IconFont type="icon-facebook" />
|
||
|
<IconFont type="icon-twitter" />
|
||
|
</Space>
|
||
|
);
|
||
|
|
||
|
export default App;
|