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