import React from "react"; import Grid from "@material-ui/core/Grid"; import { createStyles, Theme, withStyles } from "@material-ui/core/styles"; import Typography from "@material-ui/core/Typography"; interface IPageHeader { classes: any; label: any; actions?: any; } const styles = (theme: Theme) => createStyles({ headerContainer: { position: "absolute", width: "100%", height: 77, display: "flex", backgroundColor: "#fff", borderBottom: "#E3E3E3 1px solid", left: 0, }, label: { display: "flex", justifyContent: "flex-start", alignItems: "center", }, labelStyle: { color: "#000", fontSize: 18, fontWeight: 700, marginLeft: 55, marginTop: 8, }, rightMenu: { marginTop: 16, marginRight: 8, }, }); const PageHeader = ({ classes, label, actions }: IPageHeader) => { return ( {label} {actions && ( {actions} )} ); }; export default withStyles(styles)(PageHeader);