@nutui/nutui-react
Version:
京东风格的轻量级移动端 React 组件库,支持一套代码生成 H5 和小程序
13 lines (12 loc) • 442 B
TypeScript
import { FunctionComponent, HTMLAttributes } from 'react';
import { WebContentProps } from "../../types";
export declare const defaultContentProps: {
visible: boolean;
title: string;
header: string;
footer: string;
close: string;
footerDirection: string;
onClick: () => void;
};
export declare const Content: FunctionComponent<Partial<WebContentProps> & Omit<HTMLAttributes<HTMLDivElement>, 'title' | 'content'>>;