blob: 656c0426b1e494b6e2cf339df597617e07e7d1d9 (
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'
}
|