blob: 5afd7f6f7eaa5670ba154b6dbd0b424fd5aa6cbe [file] [log] [blame]
<dom-module id="gr-repo-chip">
<template>
<style>
iron-icon {
height: 1.2rem;
width: 1.2rem;
}
:host {
display: inline-block;
}
</style>
<span> {{repo.name}} </span>
<gr-button
id="remove"
link
hidden$="[[!removable]]"
tabindex="-1"
aria-label="Remove"
class="remove"
on-click="_handleRemove">
<iron-icon icon="gr-icons:close"></iron-icon>
</gr-button>
</template>
<script src="gr-repo-chip.js"></script>
</dom-module>