kia-ml
Version:
Kia
15 lines • 643 B
JavaScript
import * as React from "react";
import { TouchableOpacity, Text } from "react-native";
import { Icons } from "../../config/icons";
import { KiaIcon } from "../icon/icon";
import * as styles from "./checkbox-style";
export function Checkbox(props) {
return /*#__PURE__*/React.createElement(TouchableOpacity, {
style: styles.baseView,
onPress: () => props.onCheckboxPress(!props.checked)
}, /*#__PURE__*/React.createElement(KiaIcon, {
src: props.checked ? Icons.checkbox.checked : Icons.checkbox.unchecked,
size: "medium"
}), /*#__PURE__*/React.createElement(Text, null, props.text));
}
//# sourceMappingURL=checkbox.js.map