Skip to content

Commit

Permalink
feat: add new interface
Browse files Browse the repository at this point in the history
  • Loading branch information
ialexanderbrito committed May 6, 2022
1 parent 176e50d commit 8d89fc7
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/types/IComponents.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export interface DropdownItemProps {
}

export type CardBarbeiroProps = {
barbeiro: UserMetadata | undefined;
barbeiro?: UserMetadata | undefined;
onClick?: () => void;
};

Expand All @@ -80,3 +80,8 @@ export type CardClienteProps = {
export interface FloatingButtonProps {
onClick?: () => void;
}

export interface OcupacaoProps {
cliente?: string;
barbeiro?: string;
}

0 comments on commit 8d89fc7

Please sign in to comment.