// @flow import * as React from 'react'; import AccessibleSVG from '../accessible-svg'; type Props = { className?: 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 SharedLinkErrorState = ({ className = '', height = 173, title, width = 175 }: Props) => ( ); export default SharedLinkErrorState;