artwork-react-native
Version:
artwork design master for react-native
13 lines (12 loc) • 325 B
TypeScript
/// <reference types="react" />
import React from 'react';
export interface ResultProps {
style?: any;
imgUrl?: string | any;
img?: React.ReactNode;
title?: React.ReactNode;
message?: React.ReactNode;
buttonText?: string;
buttonType?: 'primary' | 'ghost';
onButtonPress?: (e?: any) => void;
}