import React, { Component } from 'react'; import { StyleSheet, Text, TextInput, TouchableOpacity, View } from 'react-native'; const CHECKMARK = String.fromCharCode(10003); const styles = StyleSheet.create({ header: { paddingHorizontal: 16, flexDirection: "row", justifyContent: "space-around", alignItems: "center" }, input: { flex: 1, fontSize: 24, height: 50, marginLeft: 16 }, toggleIcon: { color: "#CCC", fontSize: 30 } }); class Header extends Component { render() { return ( {CHECKMARK} ); } } export default Header;