17 lines
520 B
JavaScript
Raw Normal View History

import React, {Component} from '../../../node_modules/react';
import './ButtonIcon.scss'
export default class ButtonIcon extends Component {
// constructor(props) {
// super(props);
// this.state = {};
// }
render() {
2021-09-30 00:15:56 +02:00
return <a class="button" rel="noopener" href={this.props.lien} target="_blank"
aria-label="Profil {this.props.icon}">
<span class="icon is-large">
<ion-icon name={this.props.icon}></ion-icon>
</span>
</a>;
}
}