kgroad-frontend2/src/widgets/Header/HeaderLink/HeaderLink.tsx
Vladislav Khorev e0e2f5470d renamed folders
2024-02-14 08:04:02 +00:00

16 lines
402 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import "./HeaderLink.scss";
import Image from "next/image";
import arrow_right from "./icons/arrow-right-circle.svg";
import Link from "next/link";
const HeaderLink = () => {
return (
<Link href="/create-report" className="header-link">
Отметить разбитую дорогу
<Image src={arrow_right} alt="Arrow Right Icon" />
</Link>
);
};
export default HeaderLink;