All files / src/components/u-form-table.vue edit-button.vue

72.72% Statements 8/11
33.33% Branches 2/6
50% Functions 1/2
80% Lines 8/10

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22      7x   7x     7x                          
<script>
import UButton from '../u-button.vue';
 
export default { name: 'u-form-table-edit-button', extends: UButton };
</script>
 
<style module>
.root {}
 
.root[disabled] {
    cursor: var(--cursor-not-allowed);
    color: var(--brand-disabled);
}
 
.root::before {
    font-size: var(--font-size-huge);
    display: inline-block;
    vertical-align: middle;
    icon-font: url('../i-icon.vue/assets/edit.svg');
}
</style>