import { cn } from "@/lib/utils"; import { ComponentPropsWithClassName } from "@/types/components"; import { View } from "react-native"; type Props = ComponentPropsWithClassName; const Box = ({ className, style, ...props }: Props) => { return ( ); }; export default Box;