import { WordPressLogo } from '../../logos/wordpress-logo';
import { SiteThumbnail } from '../index';
const ASPECT_RATIO = 16 / 11;
const THUMBNAIL_DIMENSION = {
width: 401,
height: 401 / ASPECT_RATIO,
};
const SiteThumbnailExample = () => {
return (
Small
Public Site
Private Site with Site Icon
Private Site without Site Icon and Light Background
WP
Coming Soon Site
CS
Medium
Public Site
Private Site with Site Icon
Private Site without Site Icon and Light Background
W
Coming Soon Site
CS
);
};
SiteThumbnailExample.displayName = 'SiteThumbnail';
export default SiteThumbnailExample;