// @flow import * as React from 'react'; import classNames from 'classnames'; import AccessibleSVG from '../accessible-svg'; import { bdlBoxBlue, bdlBoxBlue10 } from '../../styles/variables'; type Props = { className?: string, height?: number, primaryColor?: string, secondaryColor?: string, title?: string | React.Element, width?: number, }; const SandboxesInterstitialState = ({ className = '', height = 140, primaryColor = bdlBoxBlue, secondaryColor = bdlBoxBlue10, title, width = 140, }: Props) => ( ); export default SandboxesInterstitialState;