fix: Fix old icon on logo icon
All checks were successful
release-tag / release-image (push) Successful in 2m13s
All checks were successful
release-tag / release-image (push) Successful in 2m13s
This commit is contained in:
parent
9e0cebcd50
commit
b34baf6d40
@ -1,12 +1,11 @@
|
||||
import { Ship } from "lucide-react";
|
||||
import { ProjectIcon } from "./Icons";
|
||||
import { Logo } from "@/icons/Logo";
|
||||
|
||||
export default function SidebarTitle({ collapsed }: { collapsed: boolean }) {
|
||||
return (
|
||||
<div
|
||||
style={{ display: "flex", alignItems: "center", whiteSpace: "nowrap" }}
|
||||
>
|
||||
<Ship size={40} style={{ color: "#7f6b58" }} />
|
||||
<Logo width={40} height={40} />
|
||||
|
||||
{!collapsed && (
|
||||
<span style={{ marginLeft: 8, fontWeight: "bold" }}>Белые ночи</span>
|
||||
|
3
src/icons/124.svg
Normal file
3
src/icons/124.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 7.5 KiB |
22
src/icons/Logo.tsx
Normal file
22
src/icons/Logo.tsx
Normal file
File diff suppressed because one or more lines are too long
@ -1,6 +1,6 @@
|
||||
import { AuthPage, ThemedTitleV2 } from "@refinedev/mui";
|
||||
import { ProjectIcon } from "../../components/ui/Icons";
|
||||
import { Ship } from "lucide-react";
|
||||
|
||||
import { Logo } from "@/icons/Logo";
|
||||
|
||||
export const Login = () => {
|
||||
return (
|
||||
@ -10,7 +10,7 @@ export const Login = () => {
|
||||
<ThemedTitleV2
|
||||
collapsed={false}
|
||||
text="Белые Ночи"
|
||||
icon={<Ship style={{ color: "#7f6b58" }} />}
|
||||
icon={<Logo width={24} height={24} />}
|
||||
/>
|
||||
}
|
||||
forgotPasswordLink={false}
|
||||
|
Loading…
Reference in New Issue
Block a user