import * as React from "react"; import {Text} from "react-native"; import Ripple from 'react-native-material-ripple'; import MaterialCommunityIcons from 'react-native-vector-icons/MaterialCommunityIcons' import {MaterialProgress} from "../.."; export interface MaterialContainedButtonProps { text: string, icon?: React.ReactNode, margin?: number, color?: string, textColor?: string, textFont?: string, onPress?(): void, iconName?: string, progress?: boolean, style?:object } export default (props: MaterialContainedButtonProps) => props.onPress()} style={{ borderRadius: 4, margin: props.margin, height: 36, minWidth: 64, backgroundColor: props.color, overflow: 'hidden', paddingLeft: 16, elevation: 4, shadowColor:'black', shadowOffset: { width: 0, height: 4 }, shadowRadius: 4, shadowOpacity: 0.24, flexDirection: 'row', paddingRight: 16, alignItems: 'center', justifyContent: 'center', ...props.style }}> {props.icon ? props.icon : (!props.progress && props.iconName) && } {!props.progress && {props.text} } {props.progress && } ;