import { ProductSpecs, ProductSpecsProps } from '@graphcommerce/magento-product' import { Row, SectionContainer } from '@graphcommerce/next-ui' import { makeStyles, Theme } from '@material-ui/core' import React from 'react' import { RowProductSpecsFragment } from './RowProductSpecs.gql' type RowProductSpecsProps = RowProductSpecsFragment & ProductSpecsProps const useStyles = makeStyles( (theme: Theme) => ({ root: { ...theme.typography.body1, }, sectionHeaderWrapper: { marginBottom: theme.spacings.md, }, }), { name: 'RowProductSpecs' }, ) export default function RowProductSpecs(props: RowProductSpecsProps) { const { aggregations } = props const classes = useStyles() if (!aggregations) return null return ( ) }