UNPKG
librecast-live
Version:
latest (0.0.0)
0.0.0
Live Streaming Video Platform with IPv6 Multicast
librecast-live
/
src
/
components
/
avatar.js
12 lines
(11 loc)
•
264 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
class
Avatar
extends
Component
{ nodeName =
'AVATAR'
;
constructor
() {
super
(); }
get
template() {
//let html = `<img src="${this.props.src}" />`;
let html = `<img
class
=
"avatar"
src=
"/media/librestack.svg"
height=
"30"
width=
"30"
/>`;
return
html; } }