import * as React from 'react'; import { Component, Styles, Types } from 'reactxp'; import { colors } from '../../config.json'; import * as Cell from './Cell'; interface IProps { up: boolean; onPress?: (event: Types.SyntheticEvent) => void; style?: Types.StyleRuleSetRecursive; } const style = Styles.createViewStyle({ flex: 0, alignSelf: 'stretch', justifyContent: 'center', paddingRight: 16, paddingLeft: 16, }); export default class ChevronButton extends Component { public render() { return ( ); } }