ant-design/components/input-number/demo/controls.md
MadCcc 6a7acfbf6e
feat: inputNumber support status (#34042)
* feat: inputNumber support status

* test: fix test

* feat: custom status first

* refactor: getMergedStatus pass status in params
2022-02-16 11:48:24 +08:00

26 lines
526 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`.
```jsx
import { InputNumber } from 'antd';
import { ArrowUpOutlined, ArrowDownOutlined } from '@ant-design/icons';
ReactDOM.render(
<InputNumber controls={{ upIcon: <ArrowUpOutlined />, downIcon: <ArrowDownOutlined /> }} />,
mountNode,
);
```