fix: update desktop initializing splash logo

This commit is contained in:
David Hill
2026-01-17 21:41:01 +00:00
parent c3d33562c7
commit 0384e6b0e1
2 changed files with 17 additions and 3 deletions

View File

@@ -13,6 +13,21 @@ export const Mark = (props: { class?: string }) => {
)
}
export const Splash = (props: { class?: string }) => {
return (
<svg
data-component="logo-splash"
classList={{ [props.class ?? ""]: !!props.class }}
viewBox="0 0 80 100"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path d="M60 80H20V40H60V80Z" fill="var(--icon-base)" />
<path d="M60 20H20V80H60V20ZM80 100H0V0H80V100Z" fill="var(--icon-strong-base)" />
</svg>
)
}
export const Logo = (props: { class?: string }) => {
return (
<svg