summaryrefslogtreecommitdiff
path: root/src/components/sidebars/topology/building/NewRoomConstructionComponent.js
diff options
context:
space:
mode:
authorGeorgios Andreadis <g.andreadis@student.tudelft.nl>2017-09-22 09:01:58 +0200
committerGeorgios Andreadis <g.andreadis@student.tudelft.nl>2017-09-23 10:06:06 +0200
commit4cb5bca60f1f5d5a97607eed3ecc64ed2f2ab87a (patch)
tree71bb4ad3f7cf1ea645366a0bfdf838dab7b58cf5 /src/components/sidebars/topology/building/NewRoomConstructionComponent.js
parent3bf073f46e74667df4d2be9488a9f8f44ac84421 (diff)
Improve visual language of buttons
Diffstat (limited to 'src/components/sidebars/topology/building/NewRoomConstructionComponent.js')
-rw-r--r--src/components/sidebars/topology/building/NewRoomConstructionComponent.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/components/sidebars/topology/building/NewRoomConstructionComponent.js b/src/components/sidebars/topology/building/NewRoomConstructionComponent.js
index 581330ab..991715e9 100644
--- a/src/components/sidebars/topology/building/NewRoomConstructionComponent.js
+++ b/src/components/sidebars/topology/building/NewRoomConstructionComponent.js
@@ -4,6 +4,7 @@ const NewRoomConstructionComponent = ({onStart, onFinish, onCancel, currentRoomI
if (currentRoomInConstruction === -1) {
return (
<div className="btn btn-primary btn-block" onClick={onStart}>
+ <span className="fa fa-plus mr-1"/>
Construct a new room
</div>
);
@@ -11,9 +12,11 @@ const NewRoomConstructionComponent = ({onStart, onFinish, onCancel, currentRoomI
return (
<div>
<div className="btn btn-primary btn-block" onClick={onFinish}>
+ <span className="fa fa-check mr-1"/>
Finalize new room
</div>
<div className="btn btn-default btn-block" onClick={onCancel}>
+ <span className="fa fa-times mr-1"/>
Cancel construction
</div>
</div>