UNPKG

@apideck/file-picker

Version:

A React file picker component that works with the Apideck [File Storage API](https://developers.apideck.com/apis/file-storage/reference).

9 lines (8 loc) 329 B
import React, { CSSProperties } from 'react'; export interface Props extends React.HTMLAttributes<HTMLDivElement> { onClose: () => void; isOpen: boolean; className?: string; style?: CSSProperties; } export declare const Modal: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLDivElement>>;