import {View} from 'react-native' import {atoms as a, useBreakpoints, useTheme} from '#/alf' import * as Layout from '#/components/Layout' import {Text} from '#/components/Typography' import {TimesLarge_Stroke2_Corner0_Rounded} from './icons/Times' export function SearchError({ title, children, }: { title?: string children?: React.ReactNode }) { const theme = useTheme() const {gtMobile} = useBreakpoints() return ( {title} {children} ) }