/** * Created by nghinv on Sun Jun 13 2021 * Copyright (c) 2021 nghinv@lumi.biz */ import React from 'react'; import { ViewStyle, StyleProp, TouchableOpacityProps } from 'react-native'; import { IconPropsType } from '@nghinv/react-native-icons'; export declare type ButtonIconProps = { onPress?: () => void; disabled?: boolean; containerStyle?: StyleProp; sizeExtend?: number; buttonProps?: TouchableOpacityProps; } & IconPropsType; declare function ButtonIcon(props: ButtonIconProps): JSX.Element; declare namespace ButtonIcon { var defaultProps: { sizeExtend: number; }; } declare const _default: React.MemoExoticComponent; export default _default;