mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 05:29:37 +08:00
28 lines
573 B
Markdown
28 lines
573 B
Markdown
---
|
|
order: 99
|
|
debug: true
|
|
title:
|
|
zh-CN: 图标按钮
|
|
en-US: Icon
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
可以扩展 `controls` 属性用以设置自定义图标。
|
|
|
|
## en-US
|
|
|
|
When you need to use a custom `Icon`, you can set the `Icon` component as the property value of `upIcon` and `downIcon`.
|
|
|
|
```tsx
|
|
import { ArrowDownOutlined, ArrowUpOutlined } from '@ant-design/icons';
|
|
import { InputNumber } from 'antd';
|
|
import React from 'react';
|
|
|
|
const App: React.FC = () => (
|
|
<InputNumber controls={{ upIcon: <ArrowUpOutlined />, downIcon: <ArrowDownOutlined /> }} />
|
|
);
|
|
|
|
export default App;
|
|
```
|