UNPKG

@selfcommunity/react-ui

Version:

React UI Components to integrate a Community created with SelfCommunity Platform.

12 lines (11 loc) 381 B
/// <reference types="react" /> interface SwitchFormProps { name: string; title: string; description: string; checked: boolean; handleChangeOptions: (key: string, value: boolean) => void; } declare function SwitchForm(props: SwitchFormProps): JSX.Element; declare const _default: import("react").MemoExoticComponent<typeof SwitchForm>; export default _default;