17 lines
451 B
TypeScript
17 lines
451 B
TypeScript
import { Ship } from "lucide-react";
|
||
import { ProjectIcon } from "./Icons";
|
||
|
||
export default function SidebarTitle({ collapsed }: { collapsed: boolean }) {
|
||
return (
|
||
<div
|
||
style={{ display: "flex", alignItems: "center", whiteSpace: "nowrap" }}
|
||
>
|
||
<Ship size={40} style={{ color: "#7f6b58" }} />
|
||
|
||
{!collapsed && (
|
||
<span style={{ marginLeft: 8, fontWeight: "bold" }}>Белые ночи</span>
|
||
)}
|
||
</div>
|
||
);
|
||
}
|