mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 16:39:41 +08:00
23 lines
460 B
TypeScript
23 lines
460 B
TypeScript
import React from 'react';
|
|
import { FloatButton } from 'antd';
|
|
import { CustomerServiceOutlined } from '@ant-design/icons';
|
|
|
|
const App: React.FC = () => (
|
|
<>
|
|
<FloatButton
|
|
shape="circle"
|
|
type="primary"
|
|
style={{ right: 94 }}
|
|
icon={<CustomerServiceOutlined />}
|
|
/>
|
|
<FloatButton
|
|
shape="square"
|
|
type="primary"
|
|
style={{ right: 24 }}
|
|
icon={<CustomerServiceOutlined />}
|
|
/>
|
|
</>
|
|
);
|
|
|
|
export default App;
|