diff --git a/src/assets/icons/ic_close.svg b/src/assets/icons/close.svg similarity index 100% rename from src/assets/icons/ic_close.svg rename to src/assets/icons/close.svg diff --git a/src/components/common/NotificationModal/NotificationCard.tsx b/src/components/common/NotificationModal/NotificationCard.tsx index 741a1c13..bb7dce7d 100644 --- a/src/components/common/NotificationModal/NotificationCard.tsx +++ b/src/components/common/NotificationModal/NotificationCard.tsx @@ -31,7 +31,7 @@ export default function NotificationCard({ const formattedStatusClass = status === 'accepted' ? 'text-blue-20' : 'text-red-20'; return ( -
+
{status === 'accepted' ? (
) : ( diff --git a/src/components/common/NotificationModal/NotificationModal.tsx b/src/components/common/NotificationModal/NotificationModal.tsx index 1f9508f8..1adf959f 100644 --- a/src/components/common/NotificationModal/NotificationModal.tsx +++ b/src/components/common/NotificationModal/NotificationModal.tsx @@ -1,6 +1,6 @@ import { useNavigate } from 'react-router-dom'; import NotificationCard from './NotificationCard'; -import close from '@/assets/icons/ic_close.svg'; +import close from '@/assets/icons/close.svg'; interface NotificationItem { createdAt: string; // 생성 일시 (ISO 8601 문자열) @@ -33,7 +33,7 @@ interface NotificationModalProps { export default function NotificationModal({ data, count }: NotificationModalProps) { const navigate = useNavigate(); return ( -
+

알림 {count}개