import React from 'react' import PropTypes from 'prop-types' import { CX, BREAKPOINT_EXTRA_SMALL, } from '../../constants' import { getRandomInt } from '../../utils/numbers' import ResponsiveComponent from '../../features/ui/util/responsive_component' import PlaceholderLayout from './placeholder_layout' export default class StatusPlaceholder extends React.PureComponent { render() { const containerClasses = CX({ d: 1, px15: 1, mt5: 1, mb15: 1, py10: 1, radiusSmall: 1, bgPrimary: 1, boxShadowBlock: 1, }) const containerClassesXS = CX({ d: 1, bgPrimary: 1, boxShadowBlock: 1, borderTop1PX: 1, px15: 1, py10: 1, mb15: 1, borderColorSecondary: 1, }) const width = getRandomInt(120, 375) const width1 = getRandomInt(360, 450) const width2 = getRandomInt(260, 360) const width3 = getRandomInt(120, 260) return (
) } }