mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-07-16 08:27:05 -05:00
12 lines
322 B
TypeScript
12 lines
322 B
TypeScript
import { SearchIcon } from "../../../components/icons/Search";
|
|
import s from "../layout.module.css";
|
|
|
|
export function SearchInput() {
|
|
return (
|
|
<div class={s.searchInputContainer}>
|
|
<input class={s.searchInput} type="text" placeholder="Search" />
|
|
<SearchIcon class={s.searchInputIcon} />
|
|
</div>
|
|
);
|
|
}
|