//@flow import React from "react"; import classNames from "classnames"; type Props = { title?: string, name: string } export default class Icon extends React.Component { render() { const { title, name } = this.props; if(title) { return ( ); } return ( ); } }