import React, { Component } from 'react'; import PropTypes from 'prop-types'; import './HomeTile.scss'; export class EllipsisIcon extends Component { static propTypes = { /** Custom class name(s) */ className: PropTypes.string, /** An array of all of the tiles, if there are no assets it defaults to empty */ onMenu: PropTypes.func }; render() { const { className, onMenu } = this.props; return ( ); } }