mirror of
https://github.com/Ategon/Jamjar.git
synced 2025-02-12 06:16:21 +00:00
14 lines
305 B
TypeScript
14 lines
305 B
TypeScript
import { Input, NavbarItem } from "@nextui-org/react";
|
|
|
|
export default function NavbarSearchbar() {
|
|
return (
|
|
<NavbarItem>
|
|
<Input
|
|
placeholder="Search"
|
|
classNames={{
|
|
inputWrapper: "!duration-500 ease-in-out transition-all",
|
|
}}
|
|
/>
|
|
</NavbarItem>
|
|
);
|
|
}
|