aboutsummaryrefslogtreecommitdiff
path: root/src/web/components/button/Button.jsx
blob: 8d7de02bf254e0dad2306b6d3474b9602ee2cba7 (plain)
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>
    )
}