INNER CODE UNIT · JavaScript
ButtonBordered
Trixieapp/react-virgin · TrixieUiKit/components/buttonBordered.js:7
class ButtonBordered extends Component {
static propTypes = {
text: PropTypes.string,
}
static defaultProps = {
text: '',
}
render = () => {
const { text } = this.props
return (
<TouchableHighlight style={componentStyle.buttonBordered} underlayColor="#f1f1f1">
<View>
<Text style={componentStyle.buttonBorderedText}> {text} </Text>
</View>
</TouchableHighlight>
)