blob: 11887d41b66d7a7c400b2b95eec622e74c239067 (
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: '12px',
border: '1px solid #eee',
color: '#888',
cursor: 'pointer',
display: 'inline-block',
margin: '5px',
padding: '2px 10px'
};
|