UNPKG

@redocly/theme

Version:

Shared UI components lib

8 lines (7 loc) 238 B
import type { JSX } from 'react'; export type SwitchProps = { value: boolean; onChange: (value: boolean) => void; disabled?: boolean; }; export declare function Switch({ value, disabled, onChange }: SwitchProps): JSX.Element;