aboutsummaryrefslogtreecommitdiffstats
path: root/ui/src/components/HistorySearch.tsx
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@atuin.sh>2024-07-30 16:54:10 +0100
committerGitHub <noreply@github.com>2024-07-30 16:54:10 +0100
commit808138de633e410c1d3867d4fb7cb74967647605 (patch)
treef180b7066b91d8d8d8006219a118439be1621d74 /ui/src/components/HistorySearch.tsx
parentchore(deps): bump debian (#2320) (diff)
downloadatuin-808138de633e410c1d3867d4fb7cb74967647605.zip
chore: remove ui directory (#2329)
This is still in development, but rather than clutter the commit history and issues with an unreleased project I've split the UI into its own repo. Once ready for release, I'll either merge the ui code back in, or just make the repo public.
Diffstat (limited to 'ui/src/components/HistorySearch.tsx')
-rw-r--r--ui/src/components/HistorySearch.tsx54
1 files changed, 0 insertions, 54 deletions
diff --git a/ui/src/components/HistorySearch.tsx b/ui/src/components/HistorySearch.tsx
deleted file mode 100644
index 33a3e536..00000000
--- a/ui/src/components/HistorySearch.tsx
+++ /dev/null
@@ -1,54 +0,0 @@
-import { ArrowPathIcon } from "@heroicons/react/24/outline";
-import { MagnifyingGlassIcon } from "@heroicons/react/20/solid";
-
-interface HistorySearchProps {
- query: string;
- refresh: () => void;
- setQuery: (query: string) => void;
-}
-
-export default function HistorySearch(props: HistorySearchProps) {
- return (
- <div className="flex flex-1 gap-x-4 self-stretch lg:gap-x-6">
- <form
- className="relative flex flex-1"
- onSubmit={(e) => {
- e.preventDefault();
- }}
- >
- <label htmlFor="search-field" className="sr-only">
- Search
- </label>
- <MagnifyingGlassIcon
- className="pointer-events-none absolute inset-y-0 left-0 h-full w-5 text-gray-400"
- aria-hidden="true"
- />
- <input
- id="search-field"
- className="block h-full w-full border-0 py-0 pl-8 pr-0 text-gray-900 placeholder:text-gray-400 focus:ring-0 sm:text-sm outline-none"
- placeholder="Search..."
- autoComplete="off"
- autoCapitalize="off"
- autoCorrect="off"
- spellCheck="false"
- type="search"
- name="search"
- onChange={(query) => {
- props.setQuery(query.target.value);
- }}
- />
- </form>
- <div className="flex items-center gap-x-4 lg:gap-x-6">
- <button
- type="button"
- className="-m-2.5 p-2.5 text-gray-400 hover:text-gray-500"
- onClick={() => {
- props.refresh();
- }}
- >
- <ArrowPathIcon className="h-6 w-6" aria-hidden="true" />
- </button>
- </div>
- </div>
- );
-}