diff --git a/src/components/SearchBar.tsx b/src/components/SearchBar.tsx index 1401e21..89fcd1a 100644 --- a/src/components/SearchBar.tsx +++ b/src/components/SearchBar.tsx @@ -1,4 +1,3 @@ -import React from 'react'; import { Search } from 'lucide-react'; interface SearchBarProps { @@ -8,17 +7,17 @@ interface SearchBarProps { export function SearchBar({ value, onChange }: SearchBarProps) { return ( -
+
- +
onChange(e.target.value)} placeholder="Search packages..." - className="block w-full pl-10 pr-4 py-3 border border-nord-4 dark:border-nord-2 rounded-lg bg-nord-5 dark:bg-nord-1 focus:ring-2 focus:ring-nord-8 focus:border-transparent shadow-sm text-nord-0 dark:text-nord-6 placeholder-nord-3 dark:placeholder-nord-4" + className="block w-full pl-10 pr-4 py-3 border-2 border-nord-4 dark:border-nord-2 rounded-xl bg-nord-5 dark:bg-nord-1 focus:ring-2 focus:ring-nord-8 focus:border-transparent text-nord-0 dark:text-nord-6 placeholder-nord-3 dark:placeholder-nord-4 transition-all ease-in-out duration-200 shadow-md hover:shadow-lg" />
); -} \ No newline at end of file +}