UNPKG

soignant-nomade-ui

Version:

A react library for the soignant-nomade design system. You can find a storybook project inside it

11 lines (10 loc) 393 B
/// <reference types="react" /> interface InputDropzoneComponentProps { labelText: string; accept: string[] | string; multiple: boolean; onChange?: ((files: File[]) => void); } export declare const DownloadIcon: () => JSX.Element; export declare const InputDropzone: ({ labelText, accept, multiple, onChange }: InputDropzoneComponentProps) => JSX.Element; export {};