mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-04-25 07:32:19 -05:00
16 lines
375 B
TypeScript
16 lines
375 B
TypeScript
import { SearchIcon } from "../../../components/icons/Search";
|
|
import s from "../styles/SearchInput.module.css";
|
|
|
|
export function SearchInput() {
|
|
return (
|
|
<div class={s.searchInputContainer}>
|
|
<input
|
|
class={`plain ${s.searchInput}`}
|
|
type="text"
|
|
placeholder="Search"
|
|
/>
|
|
<SearchIcon class={s.searchInputIcon} />
|
|
</div>
|
|
);
|
|
}
|