blob: 583f8e4b612e097a832ef7dcc5f3f157ce12b5e7 (
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'
}
|