mirror of
https://github.com/RobinLinus/snapdrop.git
synced 2025-05-28 05:20:10 -07:00
25 lines
586 B
HTML
25 lines
586 B
HTML
<link rel="import" href="../../../bower_components/paper-icon-button/paper-icon-button.html">
|
|
<dom-module id="buddy-finder-button">
|
|
<template>
|
|
<style>
|
|
:host {
|
|
display: block;
|
|
}
|
|
|
|
paper-icon-item {
|
|
height: 60px;
|
|
}
|
|
</style>
|
|
<paper-icon-item>
|
|
<iron-icon icon="chat:wifi-tethering" item-icon></iron-icon>
|
|
Find People
|
|
</paper-icon-item>
|
|
</template>
|
|
<script>
|
|
'use strict';
|
|
Polymer({
|
|
is: 'buddy-finder-button'
|
|
});
|
|
</script>
|
|
</dom-module>
|