import React from "react" import './button.scss'; type Props = { onClick?: (e: React.MouseEvent) => void style?: React.CSSProperties backgroundColor?: string text?: string title?: string } export default class Button extends React.Component { render() { const style = {...this.props.style, backgroundColor: this.props.backgroundColor} return (
{this.props.children} {this.props.text}
) } }