Skip to content

Commit

Permalink
fix: ArrangeBtnType onClick optional 처리
Browse files Browse the repository at this point in the history
  • Loading branch information
wrryu09 committed Jul 10, 2024
1 parent f90dc8d commit 701e7d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types/arrangeBtnType.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ export interface ArrangeBtnType {
mode: 'DISABLED' | 'DEFAULT';
color: 'BLUE' | 'WHITE' | 'BLACK';
size: 'big' | 'small';
onClick: () => void;
onClick?: () => void;
className?: string;
'aria-label'?: string;
disabled?: boolean;
Expand Down

0 comments on commit 701e7d3

Please sign in to comment.