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