mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-27 20:49:53 +08:00
502dac12aa
* docs: fix code * feat: lint * feat: prettier * feat: test * feat: review * feat: format html * feat: format html
40 lines
1.1 KiB
TypeScript
40 lines
1.1 KiB
TypeScript
import React from 'react';
|
|
import { CustomerServiceOutlined, QuestionCircleOutlined, SyncOutlined } from '@ant-design/icons';
|
|
import { FloatButton } from 'antd';
|
|
|
|
/** Test usage. Do not use in your production. */
|
|
const { _InternalPanelDoNotUseOrYouWillBeFired: InternalFloatButton } = FloatButton;
|
|
|
|
const App: React.FC = () => (
|
|
<div style={{ display: 'flex', columnGap: 16, alignItems: 'center' }}>
|
|
<InternalFloatButton backTop />
|
|
<InternalFloatButton icon={<CustomerServiceOutlined />} />
|
|
<InternalFloatButton
|
|
icon={<QuestionCircleOutlined />}
|
|
description="HELP"
|
|
shape="square"
|
|
type="primary"
|
|
/>
|
|
<InternalFloatButton
|
|
shape="square"
|
|
items={[
|
|
{ icon: <QuestionCircleOutlined /> },
|
|
{ icon: <CustomerServiceOutlined /> },
|
|
{ icon: <SyncOutlined /> },
|
|
]}
|
|
/>
|
|
<InternalFloatButton
|
|
open
|
|
icon={<CustomerServiceOutlined />}
|
|
trigger="click"
|
|
items={[
|
|
{ icon: <QuestionCircleOutlined /> },
|
|
{ icon: <CustomerServiceOutlined /> },
|
|
{ icon: <SyncOutlined /> },
|
|
]}
|
|
/>
|
|
</div>
|
|
);
|
|
|
|
export default App;
|