mirror of
https://github.com/Qortal/chrome-extension.git
synced 2025-04-04 19:25:53 +00:00
24 lines
514 B
TypeScript
24 lines
514 B
TypeScript
import {
|
|
AppBar,
|
|
Button,
|
|
Toolbar,
|
|
Typography,
|
|
Box,
|
|
TextField,
|
|
InputLabel,
|
|
ButtonBase,
|
|
} from "@mui/material";
|
|
import { styled } from "@mui/system";
|
|
|
|
export const AppsDesktopLibraryHeader = styled(Box)(({ theme }) => ({
|
|
display: "flex",
|
|
flexDirection: 'column',
|
|
flexShrink: 0,
|
|
width: '100%'
|
|
}));
|
|
export const AppsDesktopLibraryBody = styled(Box)(({ theme }) => ({
|
|
display: "flex",
|
|
flexDirection: 'column',
|
|
flexGrow: 1,
|
|
width: '100%'
|
|
})); |