Skip to content

Commit

Permalink
add Menu component
Browse files Browse the repository at this point in the history
  • Loading branch information
overkektus committed May 31, 2023
1 parent 9ac9afb commit ab9f980
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions src/pages/content/components/Demo/Menu.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
import * as React from "react";
import Paper from "@mui/material/Paper";
import LanguageSelect from "./LanguageSelect";
import { ButtonGroup, IconButton, Stack } from "@mui/material";
import SkipNextIcon from "@mui/icons-material/SkipNext";
import VolumeUpIcon from "@mui/icons-material/VolumeUp";
import SettingsIcon from "@mui/icons-material/Settings";

export default function Menu() {
return (
<Paper sx={{ padding: "0.5rem" }}>
<Stack direction="row" spacing={2}>
<LanguageSelect />
<ButtonGroup
variant="contained"
aria-label="outlined primary button group"
size="small"
>
<IconButton aria-label="delete">
<SkipNextIcon />
</IconButton>
<IconButton aria-label="delete">
<VolumeUpIcon />
</IconButton>
<IconButton aria-label="delete">
<SettingsIcon />
</IconButton>
</ButtonGroup>
</Stack>
</Paper>
);
}

0 comments on commit ab9f980

Please sign in to comment.