mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-16 01:41:02 +08:00
3ef6ea3ead
* 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
584 B
584 B
order | title | ||||
---|---|---|---|---|---|
5 |
|
zh-CN
用于 onSearch
的时候展示 loading
。
en-US
Search loading when onSearch.
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,
);