Files
Web-Frontend/client/src/components/SearchBar.jsx
T

10 lines
331 B
React
Raw Normal View History

import { Input, InputGroup } from "@chakra-ui/react";
import { FiSearch } from "react-icons/fi"
export function SearchBar({ placeholder="Search...", size="sm", width="200px"}) {
return (
<InputGroup startElement={<FiSearch />}>
<Input placeholder="Enter volcano to search" />
</InputGroup>
);
}