mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-06 05:07:36 -05:00
16 lines
410 B
TypeScript
16 lines
410 B
TypeScript
import classNames from "classnames";
|
|
import { SearchIcon } from "../../components/icons/Search";
|
|
|
|
export function SearchInput() {
|
|
return (
|
|
<div className={"layout__search-input__container"}>
|
|
<input
|
|
className={classNames("plain", "layout__search-input")}
|
|
type="text"
|
|
placeholder="Search"
|
|
/>
|
|
<SearchIcon className="layout__search-input__icon" />
|
|
</div>
|
|
);
|
|
}
|