@@ -15,6 +15,10 @@ import { ChevronRight } from "lucide-react";
1515import Image from "next/image" ;
1616import { useEffect , useState } from "react" ;
1717
18+ import Bell from "@public/icons/common/Bell.svg" ;
19+ import CheckPrimary from "@public/icons/common/check-primary.svg" ;
20+ import EditDark from "@public/icons/edit-dark.svg" ;
21+
1822interface BufferTimeProps {
1923 context : BufferTimeDataType ;
2024 handleDeadlineModify : ( ) => void ;
@@ -101,12 +105,7 @@ const BufferTime = ({
101105 < div className = "relative flex h-full w-full flex-col justify-between" >
102106 < div className = "relative mt-[0.1vh]" >
103107 < div className = "relative flex flex-col items-center gap-3" >
104- < Image
105- src = "/icons/common/Bell.svg"
106- alt = "bell"
107- width = { 60 }
108- height = { 60 }
109- />
108+ < Image src = { Bell } alt = "bell" width = { 60 } height = { 60 } priority />
110109 { /* biome-ignore lint/a11y/useKeyWithClickEvents: <explanation> */ }
111110 < div
112111 className = "relative flex h-[26px] items-center gap-1 overflow-hidden rounded-[8px] px-[7px] py-[6px] text-black before:absolute before:inset-0 before:bg-[conic-gradient(from_220deg_at_50%_50%,_#F2F0E7_0%,_#BBBBF1_14%,_#B8E2FB_24%,_#F2EFE8_37%,_#CCE4FF_48%,_#BBBBF1_62%,_#C7EDEB_72%,_#E7F5EB_83%,_#F2F0E7_91%,_#F2F0E7_100%)] before:[transform:scale(4,1)]"
@@ -115,11 +114,12 @@ const BufferTime = ({
115114 < span className = "l6 text-inverse z-10" > { `${ currentRatio } 배의 여유시간 적용` } </ span >
116115 { availableMultipliers . length > 1 && (
117116 < Image
118- src = "/icons/edit-dark.svg"
117+ src = { EditDark }
119118 alt = "edit"
120119 width = { 14 }
121120 height = { 14 }
122121 className = "z-10"
122+ priority
123123 />
124124 ) }
125125 </ div >
@@ -139,10 +139,11 @@ const BufferTime = ({
139139 < span > { `${ multiplier } 배` } </ span >
140140 { currentRatio === multiplier && (
141141 < Image
142- src = "/icons/common/check-primary.svg"
142+ src = { CheckPrimary }
143143 alt = "check"
144144 width = { 20 }
145145 height = { 20 }
146+ priority
146147 />
147148 ) }
148149 </ div >
0 commit comments