File size: 747 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
import { CloudLogo } from '../cloud-logo';
import { JetpackLogo } from '../jetpack-logo';
import { VIPLogo } from '../vip-logo';
import { WooLogo } from '../woo-logo';
import { WooCommerceWooLogo } from '../woocommerce-woo-logo';
import './style.scss';
export default function ProductLogoExample() {
return (
<div className="example-container">
<div className="logo-container">
<JetpackLogo />
</div>
<div className="logo-container">
<CloudLogo />
</div>
<div className="logo-container">
<VIPLogo />
</div>
<div className="logo-container">
<WooLogo />
</div>
<div className="logo-container">
<WooCommerceWooLogo />
</div>
</div>
);
}
ProductLogoExample.displayName = 'ProductLogoExample';
|