UNPKG

@awsui/components-react

Version:

On July 19th, 2022, we launched [Cloudscape Design System](https://cloudscape.design). Cloudscape is an evolution of AWS-UI. It consists of user interface guidelines, front-end components, design resources, and development tools for building intuitive, en

20 lines 680 B
/// <reference types="react" /> import { BaseComponentProps } from '../internal/base-component'; import { NonCancelableEventHandler } from '../internal/events'; export interface FileDropzoneProps extends BaseComponentProps { /** * Called when the user selects new file(s), or removes a file. * The event `detail` contains the current value of the component. */ onChange: NonCancelableEventHandler<FileDropzoneProps.ChangeDetail>; /** * Children of the Dropzone. */ children: React.ReactNode; } export declare namespace FileDropzoneProps { interface ChangeDetail { value: File[]; } } //# sourceMappingURL=interfaces.d.ts.map