符合 RTK 设计系统的开关(switch)组件。
| 属性 | 类型 | 必填 | 默认值 | 描述 |
|---|---|---|---|---|
checked |
boolean |
✅ | - | 开关是否启用/选中 |
disabled |
boolean |
✅ | - | 开关是否被禁用 |
iconPack |
IconPack |
❌ | defaultIconPack |
图标包 |
readonly |
boolean |
✅ | - | 开关是否只读 |
t |
RtkI18n |
❌ | useLanguage() |
语言 |
import { RtkSwitch } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return <RtkSwitch />;
}import { RtkSwitch } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return (
<RtkSwitch
checked={true}
disabled={true}
readonly={true}
/>
);
}