File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
import { useModal } from "../../hooks/common/modal/useModal" ;
2
2
import TechStackModal from "./TechStackModal" ;
3
- import plus from "../../assets/icons/plus.svg" ;
3
+ import Plus from "../../assets/icons/plus.svg?react " ;
4
4
import NextStepButton from "../common/NextStepButton" ;
5
5
import CategoryButton from "../common/CategoryButton" ;
6
6
import { WheelEvent } from "react" ;
@@ -48,7 +48,7 @@ const TechStackInput = ({
48
48
open ( < TechStackModal { ...{ close, onAddTechStack } } /> )
49
49
}
50
50
>
51
- < img src = { plus } alt = "plus " />
51
+ < Plus width = { 40 } height = { 40 } stroke = "white " />
52
52
추가하기
53
53
</ button >
54
54
< p className = "text-3xl font-semibold text-dark-gray" > 입니다</ p >
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import { Link } from "react-router-dom";
3
3
import useDropdown from "../../hooks/common/dropdown/useDropdown" ;
4
4
import { ProjectCard } from "." ;
5
5
import { PROJECT_SORT_OPTION } from "../../constants/projects" ;
6
- import plus from "../../assets/icons/plus.svg" ;
6
+ import Plus from "../../assets/icons/plus.svg?react " ;
7
7
import { ProjectDTO } from "../../types/DTO/projectDTO" ;
8
8
import projectSortByOption from "../../utils/projectSortByOption" ;
9
9
import { useGetProjects } from "../../hooks/queries/project" ;
@@ -59,7 +59,7 @@ const ProjectList = () => {
59
59
className = "flex items-center justify-center w-[10.45rem] h-[2.5rem] py-2 pl-3 pr-9 text-white text-xs bg-middle-green gap-3 rounded-[0.375rem] shadow-box"
60
60
onClick = { handleCreateButtonClick }
61
61
>
62
- < img src = { plus } alt = "더하기" className = "w-7 " />
62
+ < Plus width = { 32 } height = { 32 } stroke = "white " />
63
63
추가하기
64
64
</ button >
65
65
</ div >
You can’t perform that action at this time.
0 commit comments