Skip to content

Commit

Permalink
fix: 빌드 오류 경로 수정 #142
Browse files Browse the repository at this point in the history
#preview
  • Loading branch information
1119wj committed Nov 22, 2024
1 parent 73412bb commit 4ae6838
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 0 deletions.
37 changes: 37 additions & 0 deletions frontend/src/components/common/DeleteIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
type DeleteIconProps = {
className?: string;
width?: number;
height?: number;
};

const DeleteIcon = ({
width = 24,
height = 24,
className,
}: DeleteIconProps) => {
return (
<>
<svg
enable-background="new 0 0 32 32"
id="Glyph"
version="1.1"
viewBox="0 0 32 32"
width={width}
height={height}
className={className}
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M6,12v15c0,1.654,1.346,3,3,3h14c1.654,0,3-1.346,3-3V12H6z M12,25c0,0.552-0.448,1-1,1s-1-0.448-1-1v-9 c0-0.552,0.448-1,1-1s1,0.448,1,1V25z M17,25c0,0.552-0.448,1-1,1s-1-0.448-1-1v-9c0-0.552,0.448-1,1-1s1,0.448,1,1V25z M22,25 c0,0.552-0.448,1-1,1s-1-0.448-1-1v-9c0-0.552,0.448-1,1-1s1,0.448,1,1V25z"
id="XMLID_237_"
/>
<path
d="M27,6h-6V5c0-1.654-1.346-3-3-3h-4c-1.654,0-3,1.346-3,3v1H5C3.897,6,3,6.897,3,8v1c0,0.552,0.448,1,1,1h24 c0.552,0,1-0.448,1-1V8C29,6.897,28.103,6,27,6z M13,5c0-0.551,0.449-1,1-1h4c0.551,0,1,0.449,1,1v1h-6V5z"
id="XMLID_243_"
/>
</svg>
</>
);
};

export default DeleteIcon;
21 changes: 21 additions & 0 deletions frontend/src/components/common/PlusIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
const PlusIcon = () => {
return (
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M6 12H18M12 6V18"
stroke="#000000"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
};

export default PlusIcon;

0 comments on commit 4ae6838

Please sign in to comment.