import React, { Component } from "react";

class ImageIcon extends Component {
  render() {
    return <img src={this.props.icon} alt="card_icon"></img>;
  }
}

export default ImageIcon;
