UNPKG

@confi/conflux-react-ui-test-package

Version:

Modern and minimalist React UI library.

17 lines (16 loc) 463 B
import React from 'react'; interface Props { className?: string; width?: string; visible?: boolean; } declare const defaultProps: { className: string; visible: boolean; }; export declare type ModalWrapperProps = Props & typeof defaultProps; declare const _default: React.ComponentType<Partial<{ className: string; visible: boolean; }> & Pick<React.PropsWithChildren<ModalWrapperProps>, "children" | "width">>; export default _default;