18 lines
594 B
JavaScript
18 lines
594 B
JavaScript
import { EmptySearch } from 'components'
|
|
import Image from 'next/image'
|
|
|
|
export default function EmptySearchList() {
|
|
return (
|
|
<div className="py-20">
|
|
<EmptySearch className="mx-auto h-60 w-60" />
|
|
<div className="max-w-md p-2 mx-auto space-y-2 border rounded-md">
|
|
<div className="flex items-center gap-x-2">
|
|
<Image src="/icons/exclamation.svg" alt="exclamation" width={32} height={32} />
|
|
<h5>没有找到结果</h5>
|
|
</div>
|
|
<p className="text-gray-500">使用更多可变单词或检查输入属性 </p>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|