Skip to content

Commit

Permalink
fix(TestCardWithIcon): Make height prop optional
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasbals committed Apr 16, 2024
1 parent dbefbc9 commit ea5dad0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/TextCardWithIcon/TextCardWithIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export interface TextCardWithIconProps {
title: string;
text: string;
icon: ReactNode;
height: 'full' | 'auto';
height?: 'full' | 'auto';

displayAs?: 'row' | 'column';
}
Expand Down

0 comments on commit ea5dad0

Please sign in to comment.