// @flow import * as React from 'react'; import AccessibleSVG from '../accessible-svg'; import { bdlBoxBlue } from '../../styles/variables'; type Props = { className?: string, color?: string, height?: number, /** A text-only string describing the icon if it's not purely decorative for accessibility */ title?: string | React.Element, width?: number, }; const SelectedItemsEmptyState = ({ className = '', color = bdlBoxBlue, height = 126, title, width = 130 }: Props) => ( ); export default SelectedItemsEmptyState;