-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
implemented the cancel and continue Button component
- Loading branch information
1 parent
2afed81
commit 1eb2c5f
Showing
12 changed files
with
51 additions
and
3 deletions.
There are no files selected for viewing
Binary file added
BIN
+778 Bytes
node_modules/.cache/babel-loader/082e0c09ba48edfa88d66eb294bd8fe72a57ab62.json.gz
Binary file not shown.
Binary file added
BIN
+1.4 KB
node_modules/.cache/babel-loader/0c521f617d0b33e5f735c59895c2fe710ebe6998.json.gz
Binary file not shown.
Binary file added
BIN
+3.75 KB
node_modules/.cache/babel-loader/169718450cce209805e82ce5feb7528a3b12507e.json.gz
Binary file not shown.
Binary file added
BIN
+3.73 KB
node_modules/.cache/babel-loader/2a794f69dd32d53adf05c104fda9113ea48cfe2e.json.gz
Binary file not shown.
Binary file added
BIN
+3.74 KB
node_modules/.cache/babel-loader/41309d0876d177ca282c488ed46975f7fbb7e63e.json.gz
Binary file not shown.
Binary file added
BIN
+1.24 KB
node_modules/.cache/babel-loader/479875f44a2867389e9c086422c43120f9cb7f54.json.gz
Binary file not shown.
Binary file added
BIN
+3.73 KB
node_modules/.cache/babel-loader/49825944a7e575cd0be6fdc967776c0092098522.json.gz
Binary file not shown.
Binary file added
BIN
+1.41 KB
node_modules/.cache/babel-loader/8ebd57239ac5cc4c96116e1539e8c035d513ebdf.json.gz
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
.Button { | ||
background-color: transparent; | ||
border: none; | ||
color: white; | ||
outline: none; | ||
cursor: pointer; | ||
font: inherit; | ||
padding: 10px; | ||
margin: 10px; | ||
font-weight: bold; | ||
} | ||
|
||
.Button:first-of-type { | ||
margin-left: 0; | ||
padding-left: 0; | ||
} | ||
|
||
.Success { | ||
color: #5C9210; | ||
} | ||
|
||
.Danger { | ||
color: #944317; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import React from 'react'; | ||
|
||
import classes from './Button.css'; | ||
|
||
const button = (props) => ( | ||
<button | ||
className={[classes.Button, classes[props.btnType]].join(' ')} | ||
onClick={props.clicked}>{props.children}</button> | ||
); | ||
|
||
export default button; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters