You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
448 B
15 lines
448 B
import type React from "react";
|
|
|
|
import { Mono } from "@components/generic/Mono.js";
|
|
import { CommandLineIcon } from "@heroicons/react/24/outline";
|
|
|
|
export const NoResults = (): JSX.Element => {
|
|
return (
|
|
<div className="py-14 px-14 text-center">
|
|
<CommandLineIcon className="mx-auto h-6 text-textSecondary" />
|
|
<Mono className="tracking-tighter">
|
|
Query does not match any avaliable commands
|
|
</Mono>
|
|
</div>
|
|
);
|
|
};
|
|
|