1 2 3 4 5 6 7 8 9 10
import React from "react"; import styles from "./Button.css"; export default function Button({className, children, ...others}) { return ( <button className={styles.button + (className != null ? " " + className : "")} {...others} > {children} </button> ) }