// @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 */ height?: number, title?: string | React.Element, width?: number, }; const IconMetadata = ({ className = '', color = '#333', title, width = 14, height = 14 }: Props) => ( ); export default IconMetadata;