You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
617 B
TypeScript

import Box from "@mui/material/Box";
import { Logo } from "./Logo/Logo";
import { SearchTextBox } from "./SearchTextBox/SearchTextBox";
import { SearchButton } from "./SearchButton/SearchButton";
export function SearchRow() {
return (
<Box
sx={{
display: "flex",
flexDirection: "row",
alignItems: "center",
gap: "1em",
}}
>
<Box sx={{ flexGrow: 0, width: "5em" }}>
<Logo />
</Box>
<Box sx={{ flexGrow: 1 }}>
<SearchTextBox />
</Box>
<Box sx={{ flexGrow: 0 }}>
<SearchButton />
</Box>
</Box>
);
}