antd-mobile
Version:
基于 React 的移动设计规范实现
19 lines (18 loc) • 448 B
TypeScript
/// <reference types="react" />
import React from 'react';
interface ResultProps {
style?: any;
imgUrl?: string;
img?: React.ReactNode;
title?: React.ReactNode;
message?: React.ReactNode;
buttonText?: string;
buttonType?: 'primary' | 'ghost';
buttonClick?: () => void;
/** below web only */
prefixCls?: string;
className?: string;
/** below rn only */
styles?: any;
}
export default ResultProps;