I have an svg
icon (which is the symbol of the Enter key):
<kbd class="DocSearch-Commands-Key">
<svg width="15" height="15" aria-label="Enter key" role="img">
<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.2">
<path d="M12 3.53088v3c0 1-1 2-2 2H4M7 11.53088l-3-3 3-3"></path>
</g>
</svg>
</kbd>
I have an input
text field like this:
<input type="text" placeholder="Press the ENTER key">
I want to append the svg
icon inside the placeholder
of the input field, such that the placeholder
is like
Press the <-| key
How do I achieve this?
EDIT: The button icons should be like this: