11 lines
279 B
TypeScript
11 lines
279 B
TypeScript
import React from "react";
|
|
import Image from "next/image";
|
|
|
|
const SidebarHeader: React.FC = () => (
|
|
<div className="flex flex-col gap-[10px] px-3">
|
|
<Image src={"icons/Jan_AppIcon.svg"} width={68} height={28} alt="" />
|
|
</div>
|
|
);
|
|
|
|
export default React.memo(SidebarHeader);
|