summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorFrank <[email protected]>2025-10-14 23:38:21 -0400
committerFrank <[email protected]>2025-10-14 23:38:21 -0400
commit86ee36f56229c740a9b762aac355679a411ee721 (patch)
tree847121d56bdb125b2c10603c27e11b298165c6aa
parent0657f0913923f2cd425cc90e5dc715a06c46622a (diff)
downloadopencode-86ee36f56229c740a9b762aac355679a411ee721.tar.gz
opencode-86ee36f56229c740a9b762aac355679a411ee721.zip
wip: zen
-rw-r--r--packages/console/mail/emails/components.tsx4
-rw-r--r--packages/console/mail/emails/templates/InviteEmail.tsx9
-rw-r--r--packages/console/mail/emails/templates/static/right-arrow.pngbin0 -> 308 bytes
3 files changed, 1 insertions, 12 deletions
diff --git a/packages/console/mail/emails/components.tsx b/packages/console/mail/emails/components.tsx
index 9c8926061..a28e29f78 100644
--- a/packages/console/mail/emails/components.tsx
+++ b/packages/console/mail/emails/components.tsx
@@ -15,10 +15,6 @@ export function A({ children, ...props }: AProps) {
return React.createElement("a", props, children)
}
-export function B({ children, ...props }: AProps) {
- return React.createElement("b", props, children)
-}
-
export function Span({ children, ...props }: SpanProps) {
return React.createElement("span", props, children)
}
diff --git a/packages/console/mail/emails/templates/InviteEmail.tsx b/packages/console/mail/emails/templates/InviteEmail.tsx
index 50c2c6f41..4edcbd9cf 100644
--- a/packages/console/mail/emails/templates/InviteEmail.tsx
+++ b/packages/console/mail/emails/templates/InviteEmail.tsx
@@ -61,14 +61,7 @@ export const InviteEmail = ({
<Button style={button} href={url}>
<Text style={buttonText}>
Join workspace
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
- <path
- d="M6.5 12L17 12M13 16.5L17.5 12L13 7.5"
- stroke="#FDFCFC"
- strokeWidth="1.5"
- strokeLinecap="square"
- />
- </svg>
+ <Img width="24" height="24" src={`${assetsUrl}/arrow-right.png`} alt="Arrow right" />
</Text>
</Button>
</Section>
diff --git a/packages/console/mail/emails/templates/static/right-arrow.png b/packages/console/mail/emails/templates/static/right-arrow.png
new file mode 100644
index 000000000..9f90bcb5c
--- /dev/null
+++ b/packages/console/mail/emails/templates/static/right-arrow.png
Binary files differ