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