Skip to content

Commit

Permalink
🏷️ Update TS typings
Browse files Browse the repository at this point in the history
Fixes #172
  • Loading branch information
Mattia Panzeri committed Jun 6, 2020
1 parent 716ce20 commit bfe844b
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions src/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,18 @@ export type AlertType = 'error' | 'success' | 'info';
// DropzoneAreaBase

export type DropzoneAreaBaseClasses = {
/** CSS properties applied to the root Dropzone div */
root: React.CSSProperties;
/** CSS properties applied to the Dropzone when 'active' */
active: React.CSSProperties;
/** CSS properties applied to the Dropzone when 'invalid' */
invalid: React.CSSProperties;
/** CSS properties applied to the Dropzone text container div */
textContainer: React.CSSProperties;
/** CSS properties applied to the Dropzone text */
text: React.CSSProperties;
/** CSS properties applied to the Dropzone icon */
icon: React.CSSProperties;
/** Material-UI class applied to the root Dropzone div */
root: string;
/** Material-UI class applied to the Dropzone when 'active' */
active: string;
/** Material-UI class applied to the Dropzone when 'invalid' */
invalid: string;
/** Material-UI class applied to the Dropzone text container div */
textContainer: string;
/** Material-UI class applied to the Dropzone text */
text: string;
/** Material-UI class applied to the Dropzone icon */
icon: string;
};

export type DropzoneAreaBaseProps = {
Expand Down

0 comments on commit bfe844b

Please sign in to comment.