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