chore: update noResult image

This commit is contained in:
JimmFly
2022-12-20 18:07:59 +08:00
parent 9fdb3c4311
commit 5f60b154c0
3 changed files with 26 additions and 2 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 57 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 16 KiB

@@ -10,7 +10,7 @@ import { useGoToPage } from '@/providers/app-state-provider/hooks';
import { usePageList } from '@/providers/app-state-provider/usePageList';
import { useLoadWorkspace } from '@/providers/app-state-provider/hooks';
import NextImage from 'next/image';
import noResultImage from './jungle-searching.png';
import noResultSVG from './noResult.svg';
export const Results = (props: {
query: string;
loading: boolean;
@@ -76,7 +76,7 @@ export const Results = (props: {
<span>Find 0 result</span>
<NextImage
alt="no result"
src={noResultImage}
src={noResultSVG}
width={150}
height={150}
></NextImage>