aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/feedback-button/feedback-button-email.tsx
diff options
context:
space:
mode:
authorSebastien Castiel <sebastien@castiel.me>2024-01-19 11:28:25 -0500
committerGitHub <noreply@github.com>2024-01-19 11:28:25 -0500
commit23524cb94314fd50476ccffe654841d980c713d7 (patch)
tree6546d4d8675c1e4bc9d30f6bf526e08eef9b4eaf /src/components/feedback-button/feedback-button-email.tsx
parentf9040f8beda10b3969572cf8764e49f9b24b222a (diff)
Clean project from marketing content (#50)
* Clean project from marketing content * Remove some dependencies
Diffstat (limited to 'src/components/feedback-button/feedback-button-email.tsx')
-rw-r--r--src/components/feedback-button/feedback-button-email.tsx24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/components/feedback-button/feedback-button-email.tsx b/src/components/feedback-button/feedback-button-email.tsx
deleted file mode 100644
index ecb8c7d..0000000
--- a/src/components/feedback-button/feedback-button-email.tsx
+++ /dev/null
@@ -1,24 +0,0 @@
-import { Heading } from '@react-email/heading'
-import { Html } from '@react-email/html'
-import { Preview } from '@react-email/preview'
-import { Text } from '@react-email/text'
-
-type Props = {
- email?: string
- message: string
-}
-
-export function FeedbackButtonEmail({ email, message }: Props) {
- return (
- <Html>
- <Preview>New feedback from {email || 'anonymous user'}</Preview>
- <Heading>New feedback on Spliit</Heading>
- <Text>
- Email address: <strong>{email || 'not provided'}</strong>
- </Text>
- <pre style={{ padding: 16, borderLeft: '2px solid lightgray' }}>
- {message}
- </pre>
- </Html>
- )
-}