Skip to content

Commit

Permalink
feat: add interfaces overlay
Browse files Browse the repository at this point in the history
  • Loading branch information
ialexanderbrito committed Apr 5, 2022
1 parent 3e75236 commit f8d0557
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/types/IComponents.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,10 @@ export interface InputProps {
export interface DropzoneProps {
onFileUploaded: (file: File) => void;
}

export type OverlayProps = {
title: string;
description: string;
children: React.ReactNode;
calendar?: boolean;
};

0 comments on commit f8d0557

Please sign in to comment.