Skip to content

Commit 48a2204

Browse files
committed
Update copy and paste icons on REPL panel
1 parent 1067ea5 commit 48a2204

File tree

5 files changed

+11
-3
lines changed

5 files changed

+11
-3
lines changed

ui/arduino/components/panel.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ function Panel(state, emit) {
1414
function PanelHandle(state, emit) {
1515
let termControls = html`
1616
<button class="panel-button" onclick=${() => document.execCommand('copy')}>
17-
C
17+
${Icon("icons/Copy.svg")}
1818
</button>
1919
<button class="panel-button" onclick=${() => document.execCommand('paste')}>
20-
P
20+
${Icon("icons/Paste.svg")}
2121
</button>
2222
<button class="panel-button" onclick=${() => emit('clean-terminal')}>
23-
<img src="icons/Delete.svg" />
23+
${Icon("icons/Delete.svg")}
2424
</button>
2525
`
2626
return html`

ui/arduino/icons/Copy.png

524 Bytes
Loading

ui/arduino/icons/Copy.svg

Lines changed: 4 additions & 0 deletions
Loading

ui/arduino/icons/Paste.png

426 Bytes
Loading

ui/arduino/icons/Paste.svg

Lines changed: 4 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)