about summary refs log tree commit diff
path: root/src/components
diff options
context:
space:
mode:
authorSamuel Newman <mozzius@protonmail.com>2025-05-28 00:33:19 +0300
committerGitHub <noreply@github.com>2025-05-28 00:33:19 +0300
commit4303bca860b03d5de4a84fec4d8805c3757f892e (patch)
tree45032c9d3e3acf4cd4442e82ea8a18318917c620 /src/components
parent342f820ec01fac0ff914175575bc7afe64fa71fd (diff)
downloadvoidsky-4303bca860b03d5de4a84fec4d8805c3757f892e.tar.zst
Floating "Load more" makeover (#8420)
Diffstat (limited to 'src/components')
-rw-r--r--src/components/SubtleWebHover.web.tsx2
-rw-r--r--src/components/icons/Arrow.tsx4
2 files changed, 5 insertions, 1 deletions
diff --git a/src/components/SubtleWebHover.web.tsx b/src/components/SubtleWebHover.web.tsx
index 8943147e4..af00cf43a 100644
--- a/src/components/SubtleWebHover.web.tsx
+++ b/src/components/SubtleWebHover.web.tsx
@@ -1,7 +1,7 @@
 import {StyleSheet, View} from 'react-native'
 
 import {isTouchDevice} from '#/lib/browser'
-import {useTheme, ViewStyleProp} from '#/alf'
+import {useTheme, type ViewStyleProp} from '#/alf'
 
 export function SubtleWebHover({
   style,
diff --git a/src/components/icons/Arrow.tsx b/src/components/icons/Arrow.tsx
index 0d4bc9479..57a313cc4 100644
--- a/src/components/icons/Arrow.tsx
+++ b/src/components/icons/Arrow.tsx
@@ -4,6 +4,10 @@ export const ArrowTopRight_Stroke2_Corner0_Rounded = createSinglePathSVG({
   path: 'M8 6a1 1 0 0 1 1-1h9a1 1 0 0 1 1 1v9a1 1 0 1 1-2 0V8.414l-9.793 9.793a1 1 0 0 1-1.414-1.414L15.586 7H9a1 1 0 0 1-1-1Z',
 })
 
+export const ArrowTop_Stroke2_Corner0_Rounded = createSinglePathSVG({
+  path: 'M11 20V6.164l-4.293 4.293a1 1 0 1 1-1.414-1.414l5.293-5.293.151-.138a2 2 0 0 1 2.677.138l5.293 5.293.068.076a1 1 0 0 1-1.406 1.406l-.076-.068L13 6.164V20a1 1 0 0 1-2 0Z',
+})
+
 export const ArrowLeft_Stroke2_Corner0_Rounded = createSinglePathSVG({
   path: 'M3 12a1 1 0 0 1 .293-.707l6-6a1 1 0 0 1 1.414 1.414L6.414 11H20a1 1 0 1 1 0 2H6.414l4.293 4.293a1 1 0 0 1-1.414 1.414l-6-6A1 1 0 0 1 3 12Z',
 })