diff options
Diffstat (limited to 'vnext/src/components/Button.js')
-rw-r--r-- | vnext/src/components/Button.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/vnext/src/components/Button.js b/vnext/src/components/Button.js new file mode 100644 index 00000000..583f8e4b --- /dev/null +++ b/vnext/src/components/Button.js @@ -0,0 +1,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' +}
\ No newline at end of file |