import React, { FunctionComponent } from 'react' import { Box } from '@vtex/store-ui' import { useItemContext } from './ItemContext' import { opaque } from './utils/opaque' export const ProductBrand: FunctionComponent = () => { const { item, loading } = useItemContext() if (loading) { return <>loading... } return ( {item.additionalInfo?.brandName} ) }