/** * Created by MeePwn * https://github.com/maybewaityou * * description: * */ import React from 'react'; export interface IButtonStyle { container: any; title: any; } export default { container: { height: 44, backgroundColor: 'blue', borderRadius: 5, }, title: { color: 'white', fontSize: 16, textAlign: 'center', margin: 10, }, };