fix: change icon paths to _static
This commit is contained in:
@@ -7,7 +7,7 @@ export default function CalendarIcon({ height = 20, width = 20 }: IconProps) {
|
||||
<Image
|
||||
alt="Calendar Icon"
|
||||
height={height}
|
||||
src="/calendar_month.svg"
|
||||
src="/_static/icons/calendar_month.svg"
|
||||
width={width}
|
||||
/>
|
||||
)
|
||||
|
||||
@@ -10,7 +10,7 @@ export default function ChevronDownIcon({
|
||||
<Image
|
||||
alt="Chevron Down Icon"
|
||||
height={height}
|
||||
src="/chevron-down.svg"
|
||||
src="/_static/icons/chevron-down.svg"
|
||||
width={width}
|
||||
/>
|
||||
)
|
||||
|
||||
@@ -7,7 +7,7 @@ export default function EmailIcon({ height = 20, width = 20 }: IconProps) {
|
||||
<Image
|
||||
alt="Email Icon"
|
||||
height={height}
|
||||
src="/alternate_email.svg"
|
||||
src="/_static/icons/alternate_email.svg"
|
||||
width={width}
|
||||
/>
|
||||
)
|
||||
|
||||
@@ -4,6 +4,11 @@ import type { IconProps } from "@/types/components/icon"
|
||||
|
||||
export default function HouseIcon({ height = 20, width = 20 }: IconProps) {
|
||||
return (
|
||||
<Image alt="House Icon" height={height} src="/home.svg" width={width} />
|
||||
<Image
|
||||
alt="House Icon"
|
||||
height={height}
|
||||
src="/_static/icons/home.svg"
|
||||
width={width}
|
||||
/>
|
||||
)
|
||||
}
|
||||
|
||||
@@ -4,6 +4,11 @@ import type { IconProps } from "@/types/components/icon"
|
||||
|
||||
export default function PhoneIcon({ height = 20, width = 20 }: IconProps) {
|
||||
return (
|
||||
<Image alt="Phone Icon" height={height} src="/phone.svg" width={width} />
|
||||
<Image
|
||||
alt="Phone Icon"
|
||||
height={height}
|
||||
src="/_static/icons/phone.svg"
|
||||
width={width}
|
||||
/>
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user