Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified src/button/__image_snapshots__/button-with-text-snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 5 additions & 3 deletions src/button/button.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
import * as React from 'react';

const buttonStyle = {
border: '1px solid rgb(225, 225, 225)',
border: '1px solid #0065FF',
borderRadius: '3px',
backgroundColor: 'rgb(238, 238, 238)',
backgroundColor: '#0065FF',
cursor: 'pointer',
fontSize: '15px',
padding: '5px 10px',
margin: '10px',
fontFamily: 'Helvetica, Arial, sans-serif'
fontFamily: 'Helvetica, Arial, sans-serif',
color: 'white',
fontWeight: 600
};

export const Button: React.FunctionComponent= ({children}) => {
Expand Down