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