import {View} from 'react-native' import {usePalette} from '#/lib/hooks/usePalette' import {atoms as a, useBreakpoints} 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 {gtMobile} = useBreakpoints() const pal = usePalette('default') return ( {title} {children} ) }