Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/undo-ransomware/ransomware_detection.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/RecoverAction.vue')
-rw-r--r--src/components/RecoverAction.vue11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/components/RecoverAction.vue b/src/components/RecoverAction.vue
index 02fff08..515b83b 100644
--- a/src/components/RecoverAction.vue
+++ b/src/components/RecoverAction.vue
@@ -1,12 +1,13 @@
<template>
<button class="action-button pull-right" @click="onClickActionButton">
- <iron-icon icon="undo"></iron-icon> {{ label }}
+ <iron-icon icon="ransomware:trash"></iron-icon> {{ label }}
</button>
</template>
<script>
import '@polymer/iron-icon/iron-icon.js';
import '@polymer/iron-icons/iron-icons.js';
+import '../webcomponents/ransomware-icons'
export default {
name: 'RecoverAction',
@@ -24,4 +25,10 @@ export default {
}
}
}
-</script> \ No newline at end of file
+</script>
+
+<style lang="scss" scoped>
+ button {
+ --border-radius-pill: 0px;
+ }
+</style> \ No newline at end of file