2023-02-28 07:26:27 -08:00
|
|
|
import React from 'react';
|
|
|
|
import { FormattedMessage } from 'react-intl';
|
|
|
|
|
|
|
|
import { Stack, Text } from 'soapbox/components/ui';
|
|
|
|
|
|
|
|
export default () => (
|
2023-02-28 12:03:03 -08:00
|
|
|
<Stack space={2} className='px-4 py-2' data-testid='no-results'>
|
|
|
|
<Text weight='bold' size='lg'>
|
2023-02-28 07:26:27 -08:00
|
|
|
<FormattedMessage
|
|
|
|
id='groups.discover.search.no_results.title'
|
|
|
|
defaultMessage='No matches found'
|
|
|
|
/>
|
|
|
|
</Text>
|
|
|
|
|
|
|
|
<Text theme='muted'>
|
|
|
|
<FormattedMessage
|
|
|
|
id='groups.discover.search.no_results.subtitle'
|
|
|
|
defaultMessage='Try searching for another group.'
|
|
|
|
/>
|
|
|
|
</Text>
|
|
|
|
</Stack>
|
|
|
|
);
|