import { Image } from '@graphcommerce/image' import { UseStyles } from '@graphcommerce/next-ui/Styles' import { makeStyles, Theme } from '@material-ui/core' import PageLink from 'next/link' import React from 'react' import svgLogo from './graphcommerce.svg' const useStyles = makeStyles( (theme: Theme) => ({ logo: { width: 'auto', height: 16, pointerEvents: 'all', paddingLeft: 10, [theme.breakpoints.up('md')]: { width: 'auto', height: 32, paddingLeft: 0, }, }, link: { height: '100%', width: 'max-content', display: 'flex', alignItems: 'center', margin: '0 auto', justifyContent: 'center', [theme.breakpoints.up('md')]: { display: 'flex', margin: 'unset', justifyContent: 'left', }, }, }), { name: 'Logo' }, ) type LogoProps = UseStyles export default function Logo(props: LogoProps) { const classes = useStyles(props) return ( logo ) }