File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change 11import { useEffect , useMemo , useState } from "react" ;
22import { useLocation , useNavigate , useParams } from "react-router" ;
33import styled from "styled-components" ;
4- import { OutlinedButton , PrimaryButton } from "../components/button/button" ;
4+ import {
5+ DangerousButton ,
6+ OutlinedButton ,
7+ PrimaryButton ,
8+ } from "../components/button/button" ;
59import BUTTON_SIZE from "../components/button/button-size" ;
610import BACKGROUND_COLOR from "../components/color/background-color" ;
711import {
@@ -74,14 +78,14 @@ function ViewerButtons({ onEdit }) {
7478function EditingButtons ( { onDelete, onCancel } ) {
7579 return (
7680 < ButtonContainer >
77- < PrimaryButton
81+ < DangerousButton
7882 size = { BUTTON_SIZE . medium }
7983 title = "삭제하기"
8084 onClick = { onDelete }
8185 />
8286 < OutlinedButton
8387 size = { BUTTON_SIZE . medium }
84- title = "완료하기 "
88+ title = "완료 "
8589 onClick = { onCancel }
8690 />
8791 </ ButtonContainer >
You can’t perform that action at this time.
0 commit comments