mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-02 07:39:36 +08:00
511 B
511 B
order | title | ||||
---|---|---|---|---|---|
4 |
|
zh-CN
支持允许或者禁用清除。
en-US
Support set allow to clear star when click again.
import { Rate } from 'antd';
import React from 'react';
const App: React.FC = () => (
<>
<Rate defaultValue={3} />
<span className="ant-rate-text">allowClear: true</span>
<br />
<Rate allowClear={false} defaultValue={3} />
<span className="ant-rate-text">allowClear: false</span>
</>
);
export default App;