mirror of
https://github.com/wavetermdev/waveterm
synced 2026-05-22 08:18:29 +00:00
21 lines
604 B
TypeScript
21 lines
604 B
TypeScript
|
|
// Copyright 2024, Command Line Inc.
|
||
|
|
// SPDX-License-Identifier: Apache-2.0
|
||
|
|
|
||
|
|
import { Button } from "./button";
|
||
|
|
import { Input, InputGroup, InputRightElement } from "./input";
|
||
|
|
|
||
|
|
const SearchInput = () => {
|
||
|
|
return (
|
||
|
|
<InputGroup className="search-input-group">
|
||
|
|
<Input placeholder="Search..." />
|
||
|
|
<InputRightElement>
|
||
|
|
<Button className="search-button ghost grey">
|
||
|
|
<i className="fa-sharp fa-solid fa-magnifying-glass"></i>
|
||
|
|
</Button>
|
||
|
|
</InputRightElement>
|
||
|
|
</InputGroup>
|
||
|
|
);
|
||
|
|
};
|
||
|
|
|
||
|
|
export { SearchInput };
|