start
parent
98539899c1
commit
4847da72b6
File diff suppressed because one or more lines are too long
|
@ -22,3 +22,5 @@
|
||||||
npm-debug.log*
|
npm-debug.log*
|
||||||
yarn-debug.log*
|
yarn-debug.log*
|
||||||
yarn-error.log*
|
yarn-error.log*
|
||||||
|
|
||||||
|
.eslintcache
|
|
@ -10469,9 +10469,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"lodash": {
|
"lodash": {
|
||||||
"version": "4.17.20",
|
"version": "4.17.21",
|
||||||
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
|
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
|
||||||
"integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="
|
"integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="
|
||||||
},
|
},
|
||||||
"lodash._reinterpolate": {
|
"lodash._reinterpolate": {
|
||||||
"version": "3.0.0",
|
"version": "3.0.0",
|
||||||
|
@ -15869,9 +15869,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"ua-parser-js": {
|
"ua-parser-js": {
|
||||||
"version": "0.7.23",
|
"version": "0.7.28",
|
||||||
"resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.23.tgz",
|
"resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.28.tgz",
|
||||||
"integrity": "sha512-m4hvMLxgGHXG3O3fQVAyyAQpZzDOvwnhOTjYz5Xmr7r/+LpkNy3vJXdVRWgd1TkAb7NGROZuSy96CrlNVjA7KA=="
|
"integrity": "sha512-6Gurc1n//gjp9eQNXjD9O3M/sMwVtN5S8Lv9bvOYBfKfDNiIIhqiyi01vMBO45u4zkDE420w/e0se7Vs+sIg+g=="
|
||||||
},
|
},
|
||||||
"unbox-primitive": {
|
"unbox-primitive": {
|
||||||
"version": "1.0.1",
|
"version": "1.0.1",
|
||||||
|
|
|
@ -6,8 +6,7 @@ import {
|
||||||
InputBase,
|
InputBase,
|
||||||
Menu,
|
Menu,
|
||||||
MenuItem,
|
MenuItem,
|
||||||
Fab,
|
Fab
|
||||||
Link
|
|
||||||
} from "@material-ui/core";
|
} from "@material-ui/core";
|
||||||
import {
|
import {
|
||||||
Menu as MenuIcon,
|
Menu as MenuIcon,
|
||||||
|
@ -24,7 +23,7 @@ import classNames from "classnames";
|
||||||
import useStyles from "./styles";
|
import useStyles from "./styles";
|
||||||
|
|
||||||
// components
|
// components
|
||||||
import { Badge, Typography, Button } from "../Wrappers";
|
import { Badge, Typography } from "../Wrappers";
|
||||||
import Notification from "../Notification/Notification";
|
import Notification from "../Notification/Notification";
|
||||||
import UserAvatar from "../UserAvatar/UserAvatar";
|
import UserAvatar from "../UserAvatar/UserAvatar";
|
||||||
|
|
||||||
|
@ -137,10 +136,9 @@ export default function Header(props) {
|
||||||
)}
|
)}
|
||||||
</IconButton>
|
</IconButton>
|
||||||
<Typography variant="h6" weight="medium" className={classes.logotype}>
|
<Typography variant="h6" weight="medium" className={classes.logotype}>
|
||||||
React Material Admin
|
CDN Admin
|
||||||
</Typography>
|
</Typography>
|
||||||
<div className={classes.grow} />
|
<div className={classes.grow} />
|
||||||
<Button component={Link} href="https://flatlogic.com/templates/react-material-admin-full" variant={"outlined"} color={"secondary"} className={classes.purchaseBtn}>Unlock full version</Button>
|
|
||||||
<div
|
<div
|
||||||
className={classNames(classes.search, {
|
className={classNames(classes.search, {
|
||||||
[classes.searchFocused]: isSearchOpen,
|
[classes.searchFocused]: isSearchOpen,
|
||||||
|
|
Loading…
Reference in New Issue