adui
Version:
<div> <img src="https://wxa.wxs.qq.com/mpweb/delivery/legacy/wxadtouch/upload/t1/od834zef_52939fc6.png" style="margin:40px 0 0 -8px; background-color: #fcfcfc; box-shadow: none;" /> </div>
26 lines (22 loc) • 427 B
Markdown
order: 0
title:
zh-CN: 按钮类型
en-US: Intent
点击切换按钮类型 `intent`:
```jsx
const [copied, setCopied] = useState(false)
return (
<div>
<Button
leftIcon={copied ? "tick-circle" : "copy-outlined"}
intent={copied ? "primary" : "normal"}
theme="light"
onClick={() => setCopied(!copied)}
>
{copied ? "已复制" : "复制代码"}
</Button>
</div>
)
```