diff --git a/src/components/common/ItemWishList/ItemWishList.module.scss b/src/components/common/ItemWishList/ItemWishList.module.scss index 2b43dbd53..973ff5af9 100644 --- a/src/components/common/ItemWishList/ItemWishList.module.scss +++ b/src/components/common/ItemWishList/ItemWishList.module.scss @@ -1,12 +1,9 @@ -@import '../../../styles/utilities'; .heartToggle{ cursor: pointer; width: 2.4rem; height: 2.4rem; - path{ - stroke: var(--primary); - } + } .isToggleOn{ svg path{ diff --git a/src/components/common/ItemWishList/ItemWishList.tsx b/src/components/common/ItemWishList/ItemWishList.tsx index d1161e733..74d0b3b04 100644 --- a/src/components/common/ItemWishList/ItemWishList.tsx +++ b/src/components/common/ItemWishList/ItemWishList.tsx @@ -8,7 +8,7 @@ interface Props { onChange?: () => void } -const ItemWishList = memo(({isActive, onChange}:Props) => { +const ItemWishList = memo(({isActive=false, onChange}:Props) => { return(
{ + return( + + ) +} + +export default SelectCommon \ No newline at end of file