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.
 
 

518 B

order debug title
99 true [{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.

import { InputNumber } from 'antd';
import { ArrowUpOutlined, ArrowDownOutlined } from '@ant-design/icons';

export default () => (
  <InputNumber controls={{ upIcon: <ArrowUpOutlined />, downIcon: <ArrowDownOutlined /> }} />
);