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

16 lines
490 B
React
Raw Normal View History

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"
2025-07-22 09:26:40 -07:00
bg="base100"
/>
</InputGroup>
);
}