// @flow import * as React from 'react'; import AccessibleSVG from '../accessible-svg'; type Props = { className?: string, filter?: { definition?: React.Node, id?: 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 IconCloud = ({ className = '', filter = {}, height = 64, title, width = 64 }: Props) => { const { id: filterID, definition } = filter; return ( {definition ? {definition} : null} ); }; export default IconCloud;