import * as Switch from '@radix-ui/react-switch'; import type { JSONPath } from 'jsonc-parser'; type Props = { value: boolean; path: JSONPath; onChange: (next: boolean) => void; }; export const BooleanToggle = ({ value, path, onChange }: Props) => ( );