UNPKG

@ant-design/react-native

Version:

基于蚂蚁金服移动设计规范的 React Native 组件库

12 lines (11 loc) 356 B
import React from 'react'; import { ImagePropertiesSourceOptions } from 'react-native'; export interface ResultPropsType { imgUrl?: ImagePropertiesSourceOptions; img?: React.ReactNode; title?: React.ReactNode; message?: React.ReactNode; buttonText?: string; buttonType?: 'primary' | 'ghost'; onButtonClick?: (e: any) => void; }