2025-07-11 15:58:38 -07:00
|
|
|
import { Input, InputGroup } from "@chakra-ui/react";
|
|
|
|
|
import { FiSearch } from "react-icons/fi"
|
|
|
|
|
|
2025-07-17 11:33:16 -07:00
|
|
|
export function SearchBar({ placeholder="Enter a volcano to search", size="sm", width="210px" }) {
|
2025-07-11 15:58:38 -07:00
|
|
|
return (
|
|
|
|
|
<InputGroup startElement={<FiSearch />}>
|
2025-07-17 11:33:16 -07:00
|
|
|
<Input
|
|
|
|
|
placeholder={placeholder}
|
|
|
|
|
size={size}
|
|
|
|
|
width={width}
|
|
|
|
|
borderRadius="full"
|
|
|
|
|
|
|
|
|
|
/>
|
2025-07-11 15:58:38 -07:00
|
|
|
</InputGroup>
|
|
|
|
|
);
|
|
|
|
|
}
|