Skip to content

Commit

Permalink
Merge pull request #1349 from 42organization/6th_party
Browse files Browse the repository at this point in the history
[test-deploy] react-icons 버전에 따른 party 공유, 신고 아이콘 종류 변경 후 테스트 재배포
  • Loading branch information
izone00 authored Apr 5, 2024
2 parents cb0c8fa + bea616b commit 180e38b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions components/party/roomDetail/PartyDetailButton.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { useRouter } from 'next/router';
import { useSetRecoilState } from 'recoil';
import { CiShare2 } from 'react-icons/ci';
import { LuAlertTriangle } from 'react-icons/lu';
import { BsShare } from 'react-icons/bs';
import { FiAlertTriangle } from 'react-icons/fi';
import { instance } from 'utils/axios';
import { modalState } from 'utils/recoil/modal';
import { toastState } from 'utils/recoil/toast';
Expand Down Expand Up @@ -30,7 +30,7 @@ function ReportComment({ commentId }: ParytButtonProps) {
});
}}
>
<LuAlertTriangle color='gray' />
<FiAlertTriangle color='gray' />
</button>
);
}
Expand All @@ -51,7 +51,7 @@ function ReportRoom({ roomId }: ParytButtonProps) {
});
}}
>
<LuAlertTriangle color='gray' />
<FiAlertTriangle color='gray' />
</button>
);
}
Expand All @@ -74,7 +74,7 @@ function ReportNoShow({ roomId, userIntraId }: ParytButtonProps) {
}}
>
<div style={{ margin: '0 0.3rem' }}>노쇼 신고</div>
<LuAlertTriangle color='gray' style={{ marginTop: 'auto' }} />
<FiAlertTriangle color='gray' style={{ marginTop: 'auto' }} />
</button>
);
}
Expand All @@ -98,7 +98,7 @@ function ShareRoom() {
});
}}
>
<CiShare2 size={30} />
<BsShare size={20} />
</button>
);
}
Expand Down

0 comments on commit 180e38b

Please sign in to comment.