import AppBar from '@material-ui/core/AppBar'; import { makeStyles, createStyles } from '@material-ui/core/styles'; import { Grid } from '@material-ui/core'; import Image from 'next/image'; import { ICONS, ICON_SIZE } from '../../lib/consts/ICONS'; const useStyles = makeStyles((theme) => createStyles({ appBar: { paddingTop: theme.spacing(0.5), paddingBottom: theme.spacing(0.5), paddingLeft: theme.spacing(3), paddingRight: theme.spacing(3), }, input: { height: '40px', width: '500px', backgroundColor: theme.palette.secondary.main, borderRadius: '3px', }, }), ); const Header = (): JSX.Element => { const classes = useStyles(); return ( {ICONS.map( (icon): JSX.Element => ( ), )} ); }; export default Header;