UNPKG

@alicloud/cloud-charts

Version:

![](https://img.shields.io/npm/v/@alicloud/cloud-charts?color=%23ff8200)

20 lines (19 loc) 607 B
import * as React from 'react'; import { MobileProps } from "../common/platform"; import { Status } from '../common/types'; import './index.scss'; export interface WminicontainerProps extends MobileProps { className?: string; style?: React.CSSProperties; width?: string | number; height?: string | number; status?: Status | string; } export default class Wminicontainer extends React.Component<WminicontainerProps> { static displayName: string; static defaultProps: { status: string; }; constructor(props: WminicontainerProps); render(): React.JSX.Element; }