diff --git a/src/assets/images/base-image.png b/src/assets/images/base-image.png new file mode 100644 index 0000000..7403fee Binary files /dev/null and b/src/assets/images/base-image.png differ diff --git a/src/components/common/CardScrapButton/cardScrapButton.module.scss b/src/components/common/CardScrapButton/cardScrapButton.module.scss new file mode 100644 index 0000000..71c56ed --- /dev/null +++ b/src/components/common/CardScrapButton/cardScrapButton.module.scss @@ -0,0 +1,3 @@ +.button { + cursor: pointer; +} diff --git a/src/components/common/CardScrapButton/index.tsx b/src/components/common/CardScrapButton/index.tsx index 9e54fab..2ee238a 100644 --- a/src/components/common/CardScrapButton/index.tsx +++ b/src/components/common/CardScrapButton/index.tsx @@ -1,5 +1,7 @@ import {FaBookmark, FaRegBookmark} from 'react-icons/fa6'; +import styles from './cardScrapButton.module.scss'; + interface CompanyRecruitmentCardProps { scrap?: () => void; isScrap: boolean; @@ -7,7 +9,7 @@ interface CompanyRecruitmentCardProps { const CardScrapButton = ({scrap, isScrap}: CompanyRecruitmentCardProps) => { return ( - ); diff --git a/src/components/common/CardScrapServerButton/index.tsx b/src/components/common/CardScrapServerButton/index.tsx index 2646a65..32637a3 100644 --- a/src/components/common/CardScrapServerButton/index.tsx +++ b/src/components/common/CardScrapServerButton/index.tsx @@ -20,10 +20,7 @@ const CardScrapButton = ({ name={`isScrap:${recruitmentId}`} value={String(isScrap)} /> -