import * as React from 'react' import { ViewStyle } from 'react-native' import styled from 'styled-components/native' import OText from './OText' const Wrapper = styled.TouchableOpacity` background-color: white; border-radius: 4px; height: 50px; align-items: center; justify-content: center; ` interface Props { title?: string, subTitle?: string, onClick?: any, style?: ViewStyle } const OKeyButton = (props: Props) => { return ( {props.title} {props.subTitle ? ( {props.subTitle} ) : null} ) } export default OKeyButton