+ took out extra 'layout' directory. + 'Canvas' postfix removed from all files in the views directory. + "WidgetCanvas" renamed to "MyDashboard"
16 lines
490 B
React
16 lines
490 B
React
import { Input, InputGroup } from "@chakra-ui/react";
|
|
import { FiSearch } from "react-icons/fi"
|
|
|
|
export function SearchBar({ placeholder="Enter a volcano to search", size="sm", width="210px" }) {
|
|
return (
|
|
<InputGroup startElement={<FiSearch />}>
|
|
<Input
|
|
placeholder={placeholder}
|
|
size={size}
|
|
width={width}
|
|
borderRadius="full"
|
|
bg="base100"
|
|
/>
|
|
</InputGroup>
|
|
);
|
|
} |