import { View } from "react-native"; import { P } from "~/primitives"; import { cn } from "~/utils"; export const EmptyView = ({ message, className, }: { message: string; className?: string; }) => { return (

{message}

); };