refactor: something
This commit is contained in:
39
src/components/layout-control.tsx
Normal file
39
src/components/layout-control.tsx
Normal file
@@ -0,0 +1,39 @@
|
||||
import { Button } from "@mui/material";
|
||||
import { appWindow } from "@tauri-apps/api/window";
|
||||
import {
|
||||
CloseRounded,
|
||||
CropLandscapeOutlined,
|
||||
HorizontalRuleRounded,
|
||||
} from "@mui/icons-material";
|
||||
|
||||
const LayoutControl = () => {
|
||||
return (
|
||||
<>
|
||||
<Button
|
||||
size="small"
|
||||
sx={{ minWidth: 48 }}
|
||||
onClick={() => appWindow.minimize()}
|
||||
>
|
||||
<HorizontalRuleRounded />
|
||||
</Button>
|
||||
|
||||
<Button
|
||||
size="small"
|
||||
sx={{ minWidth: 48 }}
|
||||
onClick={() => appWindow.toggleMaximize()}
|
||||
>
|
||||
<CropLandscapeOutlined />
|
||||
</Button>
|
||||
|
||||
<Button
|
||||
size="small"
|
||||
sx={{ minWidth: 48 }}
|
||||
onClick={() => appWindow.hide()}
|
||||
>
|
||||
<CloseRounded />
|
||||
</Button>
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default LayoutControl;
|
||||
Reference in New Issue
Block a user