aboutsummaryrefslogtreecommitdiffstats
path: root/apps/mobile/components/ui/ChevronRight.tsx
blob: 5b9af6e184ae0cb71f4c4d285534f5416e2ec440 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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} />;
}