UNPKG

@aliretail/react-materials-components

Version:
22 lines (21 loc) 528 B
import * as React from 'react'; import * as PropTypes from 'prop-types'; declare type TProps = typeof SimplePopover.defaultProps & { /** * 属性注释 */ tip: string[]; text: string; }; declare class SimplePopover extends React.Component<TProps> { static propTypes: { tip: PropTypes.Requireable<any[]>; text: PropTypes.Requireable<string>; }; static defaultProps: { tip: string[]; text: string; }; render(): JSX.Element; } export default SimplePopover;