summaryrefslogtreecommitdiffhomepage
path: root/packages/ui
diff options
context:
space:
mode:
authorDavid Hill <[email protected]>2026-01-17 21:41:01 +0000
committerDavid Hill <[email protected]>2026-01-17 21:46:23 +0000
commit0384e6b0e15a4ea033c09da8fd9742f9ead8b8a6 (patch)
treeca3cb040255a89f8f2787be1f2bea208694dca17 /packages/ui
parentc3d33562c705445e258648bb0d34e94fea7fe68f (diff)
downloadopencode-0384e6b0e15a4ea033c09da8fd9742f9ead8b8a6.tar.gz
opencode-0384e6b0e15a4ea033c09da8fd9742f9ead8b8a6.zip
fix: update desktop initializing splash logo
Diffstat (limited to 'packages/ui')
-rw-r--r--packages/ui/src/components/logo.tsx15
1 files changed, 15 insertions, 0 deletions
diff --git a/packages/ui/src/components/logo.tsx b/packages/ui/src/components/logo.tsx
index 5ddf3fba3..26f312bda 100644
--- a/packages/ui/src/components/logo.tsx
+++ b/packages/ui/src/components/logo.tsx
@@ -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