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).

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