mirror of
https://github.com/ant-design/ant-design.git
synced 2025-08-05 23:46:28 +08:00

* refactor: some styles to reduce css bundle size * test: update snapshot * fix snapshot * fix test case * fix addonAfter * fix firefox style * reduce riddon css size * fix Input.Group border radius * remove unused css selectors * fix test cov * fix search button hover border * fix rtl textarea clear icon style * update demos * fix search rtl style * fix input search style
34 lines
584 B
Markdown
34 lines
584 B
Markdown
---
|
|
order: 5
|
|
title:
|
|
zh-CN: 搜索框 loading
|
|
en-US: Search box with loading
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
用于 `onSearch` 的时候展示 `loading`。
|
|
|
|
## en-US
|
|
|
|
Search loading when onSearch.
|
|
|
|
```jsx
|
|
import { Input } from 'antd';
|
|
|
|
const { Search } = Input;
|
|
|
|
ReactDOM.render(
|
|
<>
|
|
<Search placeholder="input search loading default" loading />
|
|
<br />
|
|
<br />
|
|
<Search placeholder="input search loading with enterButton" loading enterButton />
|
|
<br />
|
|
<br />
|
|
<Search placeholder="input search text" enterButton="Search" size="large" loading />
|
|
</>,
|
|
mountNode,
|
|
);
|
|
```
|