UNPKG

react-native-simi-comps

Version:
8 lines (7 loc) 238 B
/// <reference types="react" /> import { SwitchProps } from "react-native"; export default function Toggle({ label, value, onChange, }: { label: string; value: boolean; onChange: SwitchProps["onValueChange"]; }): JSX.Element;