Files
NowChess-Frontend/src/app/components/chess-piece/chess-piece.component.html
T
shosho996 ff75c8ce2f feat: NCS-63 User account implementation (#2)
User Profile info, no game before login/register, menu bar

---------

Co-authored-by: Lala, Shahd <Shahd.Lala@sybit.de>
Co-authored-by: shahdlala66 <shahd.lala66@gmail.com>
Reviewed-on: #2
2026-05-06 10:51:30 +02:00

11 lines
209 B
HTML

@if (pieceCode) {
<img
class="piece"
[src]="spriteUrl"
[alt]="pieceCode"
[attr.draggable]="draggable ? 'true' : null"
(dragstart)="onDragStart($event)"
(dragend)="onDragEnd()"
/>
}