aboutsummaryrefslogtreecommitdiff
path: root/apps/browser-extension/components/icons.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'apps/browser-extension/components/icons.tsx')
-rw-r--r--apps/browser-extension/components/icons.tsx18
1 files changed, 18 insertions, 0 deletions
diff --git a/apps/browser-extension/components/icons.tsx b/apps/browser-extension/components/icons.tsx
new file mode 100644
index 00000000..2cddd587
--- /dev/null
+++ b/apps/browser-extension/components/icons.tsx
@@ -0,0 +1,18 @@
+export function RightArrow({ className }: { className?: string }) {
+ return (
+ <svg
+ width="10"
+ height="11"
+ viewBox="0 0 10 11"
+ fill="none"
+ xmlns="http://www.w3.org/2000/svg"
+ className={className}
+ >
+ <title>Right arrow</title>
+ <path
+ d="M-1.26511e-05 5.82399V4.53599H7.81199L3.90599 0.895994L4.78799 -6.19888e-06L9.79999 4.77399V5.54399L4.78799 10.332L3.90599 9.43599L7.78399 5.82399H-1.26511e-05Z"
+ fill="#737373"
+ />
+ </svg>
+ )
+}