Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
import React from "react";
import styles from "./button.css";
export default class Button extends React.Component {
render() {
return (
<button className={styles.btn}>
<span className={styles.icon}>
<Icon name={this.props.icon}/>
</span>
<span className={styles.text}>{this.props.value}</span>
</button>
);
}
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question