aboutsummaryrefslogtreecommitdiffstats
path: root/apps/mobile/components/ui/ChevronRight.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'apps/mobile/components/ui/ChevronRight.tsx')
-rw-r--r--apps/mobile/components/ui/ChevronRight.tsx11
1 files changed, 11 insertions, 0 deletions
diff --git a/apps/mobile/components/ui/ChevronRight.tsx b/apps/mobile/components/ui/ChevronRight.tsx
new file mode 100644
index 00000000..5b9af6e1
--- /dev/null
+++ b/apps/mobile/components/ui/ChevronRight.tsx
@@ -0,0 +1,11 @@
+import { useColorScheme } from "@/lib/useColorScheme";
+import { ChevronRightIcon } from "lucide-react-native";
+
+export default function ChevronRight({
+ color,
+ ...props
+}: React.ComponentProps<typeof ChevronRightIcon>) {
+ const { colors } = useColorScheme();
+
+ return <ChevronRightIcon color={color ?? colors.grey} {...props} />;
+}