import { View } from "react-native"; import { cn } from "@/lib/utils"; function Divider({ className, orientation, ...props }: { color?: string; orientation: "horizontal" | "vertical"; } & React.ComponentPropsWithoutRef) { return ( ); } export { Divider };