Refactor color theme temporarily, style the search bar to have a more rounded shape
This commit is contained in:
@@ -1,10 +1,16 @@
|
||||
import { Input, InputGroup } from "@chakra-ui/react";
|
||||
import { FiSearch } from "react-icons/fi"
|
||||
|
||||
export function SearchBar({ placeholder="Search...", size="sm", width="200px"}) {
|
||||
export function SearchBar({ placeholder="Enter a volcano to search", size="sm", width="210px" }) {
|
||||
return (
|
||||
<InputGroup startElement={<FiSearch />}>
|
||||
<Input placeholder="Enter volcano to search" />
|
||||
<Input
|
||||
placeholder={placeholder}
|
||||
size={size}
|
||||
width={width}
|
||||
borderRadius="full"
|
||||
|
||||
/>
|
||||
</InputGroup>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user