summaryrefslogtreecommitdiffhomepage
path: root/packages/ui/src/components/logo.tsx
diff options
context:
space:
mode:
authorAdam <[email protected]>2025-11-14 12:38:52 -0600
committeropencode <[email protected]>2025-11-18 17:07:34 +0000
commit4069999b782cc00d4e707f5eca32082bdfad45bc (patch)
treed5c13cdd361fc79b14250b4b426a0a1195f7a01c /packages/ui/src/components/logo.tsx
parent5ba9b47b3c87dfb044c30857e56959c8eff0c8c1 (diff)
downloadopencode-4069999b782cc00d4e707f5eca32082bdfad45bc.tar.gz
opencode-4069999b782cc00d4e707f5eca32082bdfad45bc.zip
wip(desktop): new layout work
Diffstat (limited to 'packages/ui/src/components/logo.tsx')
-rw-r--r--packages/ui/src/components/logo.tsx14
1 files changed, 14 insertions, 0 deletions
diff --git a/packages/ui/src/components/logo.tsx b/packages/ui/src/components/logo.tsx
new file mode 100644
index 000000000..d3588f301
--- /dev/null
+++ b/packages/ui/src/components/logo.tsx
@@ -0,0 +1,14 @@
+export const Mark = (props: { class?: string }) => {
+ return (
+ <svg
+ data-component="logo-mark"
+ classList={{ [props.class ?? ""]: !!props.class }}
+ viewBox="0 0 16 20"
+ fill="none"
+ xmlns="http://www.w3.org/2000/svg"
+ >
+ <path data-slot="logo-mark-shadow" d="M12 16H4V8H12V16Z" fill="var(--icon-weak-base)" />
+ <path data-slot="logo-mark-o" d="M12 4H4V16H12V4ZM16 20H0V0H16V20Z" fill="var(--icon-strong-base)" />
+ </svg>
+ )
+}