hallbarUtvecklingVT7/src/components/BottomMenuButton.js
2020-11-20 17:55:22 +01:00

19 lines
386 B
JavaScript

import React, { Component } from 'react';
import './css/BottomMenu.css';
class BottomMenuButton extends Component {
constructor(props) {
super(props);
}
render(label, icon) {
return (
<button>
<img src={this.props.icon}/>
<span>{this.props.label}</span>
</button>
);
}
}
export default BottomMenuButton;