Skip to content

Commit

Permalink
fix : keywordbutton타입과 스타일 수정 (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
kangminguu authored Oct 31, 2024
1 parent fd31850 commit 19a5cd8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/entities/KeywordButton/model/type.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Emotions } from '../../../shared/model/EmotionEnum';

export interface KeywordButtonProps {
isActive: boolean;
isActive?: boolean;
selectedEmotion?: Emotions | null;
onClick: () => void;
}
2 changes: 1 addition & 1 deletion src/entities/KeywordButton/ui/KeywordButton.styled.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import styled from 'styled-components';

export const StyledButton = styled.button<{ isActive: boolean }>`
width: 192px;
width: 175px;
height: 134px;
border: 1px solid
${(props) =>
Expand Down

0 comments on commit 19a5cd8

Please sign in to comment.