/[sudobot]/trunk/docs/components/Searching/SearchInput.tsx
ViewVC logotype

Contents of /trunk/docs/components/Searching/SearchInput.tsx

Parent Directory Parent Directory | Revision Log Revision Log


Revision 627 - (show annotations)
Sat Sep 7 09:42:28 2024 UTC (6 months, 3 weeks ago) by rakinar2
File MIME type: application/typescript
File size: 1665 byte(s)
chore: add new files

1 import { Input } from "@nextui-org/react";
2 import { forwardRef, Ref } from "react";
3 import { MdSearch } from "react-icons/md";
4
5 type SearchInputProps = {
6 setQuery: (query: string | null) => void;
7 };
8
9 const SearchInput = (
10 { setQuery }: SearchInputProps,
11 ref: Ref<HTMLInputElement>,
12 ) => {
13 return (
14 <Input
15 ref={ref}
16 isClearable
17 radius="lg"
18 classNames={{
19 label: "text-black/50 dark:text-white/90",
20 input: [
21 "bg-transparent",
22 "text-black/90 dark:text-white/90",
23 "placeholder:text-default-700/50 dark:placeholder:text-white/60",
24 ],
25 innerWrapper: "bg-transparent",
26 inputWrapper: [
27 "shadow-xl",
28 "bg-default-200/50",
29 "dark:bg-default/60",
30 "backdrop-blur-xl",
31 "backdrop-saturate-200",
32 "hover:bg-default-200/70",
33 "dark:hover:bg-default/70",
34 "group-data-[focus=true]:bg-default-200/50",
35 "dark:group-data-[focus=true]:bg-default/60",
36 "!cursor-text",
37 ],
38 }}
39 onValueChange={setQuery}
40 placeholder="Type to search..."
41 startContent={
42 <MdSearch
43 className="text-black/50 mt-0.5 dark:text-white/90 text-slate-400 pointer-events-none flex-shrink-0"
44 size={23}
45 />
46 }
47 />
48 );
49 };
50
51 export default forwardRef(SearchInput);

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26