2020-08-17 21:07:16 +01:00
|
|
|
import React from 'react'
|
2020-08-17 21:59:29 +01:00
|
|
|
import PropTypes from 'prop-types'
|
2020-07-29 21:40:47 +01:00
|
|
|
import PlaceholderLayout from './placeholder_layout'
|
|
|
|
|
2020-08-17 21:07:16 +01:00
|
|
|
export default class MediaGalleryPlaceholder extends React.PureComponent {
|
2020-07-29 21:40:47 +01:00
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
2020-08-18 21:49:11 +01:00
|
|
|
<div className={[_s.d, _s.px5, _s.py5].join(' ')}>
|
2020-07-29 21:40:47 +01:00
|
|
|
<PlaceholderLayout viewBox='0 0 400 196'>
|
|
|
|
<rect x='0' y='0' rx='0' ry='0' width='96' height='96' />
|
|
|
|
<rect x='100' y='0' rx='0' ry='0' width='96' height='96' />
|
|
|
|
<rect x='300' y='0' rx='0' ry='0' width='96' height='96' />
|
|
|
|
<rect x='200' y='0' rx='0' ry='0' width='96' height='96' />
|
|
|
|
<rect x='-2' y='100' rx='0' ry='0' width='96' height='96' />
|
|
|
|
<rect x='100' y='100' rx='0' ry='0' width='96' height='96' />
|
|
|
|
<rect x='300' y='100' rx='0' ry='0' width='96' height='96' />
|
|
|
|
<rect x='200' y='100' rx='0' ry='0' width='96' height='96' />
|
|
|
|
</PlaceholderLayout>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|