react-native-simi-comps
Version:
Simple Minimal Components for React Native
11 lines • 506 B
JavaScript
import React from "react";
import { Switch } from "react-native";
import Text from "./Text";
import View from "./View";
export default function Toggle(_a) {
var label = _a.label, value = _a.value, onChange = _a.onChange;
return (React.createElement(View, { row: true, separate: true, style: { marginVertical: 8 } },
React.createElement(Text, { text: label, bold: true }),
React.createElement(Switch, { value: value, onValueChange: onChange })));
}
//# sourceMappingURL=Toggle.js.map