UNPKG

@cfxjs/react-ui

Version:

Modern and minimalist React UI library.

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