import * as React from "react"; import { View, TouchableOpacity } from "react-native"; import Typography from "../ui/typography"; import { useSiteSettings } from "../../providers/site"; import { useThemeProvider } from "../../providers/theme-provider"; type Props = { onPress: () => void; }; function CloseModalButton({ onPress }: Props) { const { style: siteStyle } = useSiteSettings(); const { theme: { spacing }, } = useThemeProvider(); return ( CLOSE ); } export default CloseModalButton;