aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/components/Button.js
blob: e96d6cab1b85c6dfa31f3829e140a64e69ec22f9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import React from 'react';

export default function Button(props) {
    return (
        <button style={buttonStyle} {...props} />
    );
}

const buttonStyle = {
    background: '#fff',
    fontSize: 'small',
    border: '1px solid #eee',
    color: '#888',
    cursor: 'pointer',
    display: 'inline-block',
    margin: '5px',
    padding: '2px 10px'
};