// ============================================================ // Checkbox — checkbox → Switch // 用于布尔开关:原始模式、平铺、Base64 输出等 // ============================================================ import { Switch } from 'antd'; import type { WidgetProps } from './types'; export function Checkbox({ value, onChange, disabled }: WidgetProps) { return ( onChange?.(v)} disabled={disabled} /> ); }