JSFiddle - React, Tailwind, and code Playground

by brigand

HTML

<label>
  Phone number:
  
  <input type="tel" name="" id="" value="555-555-5555">
</label>
<div class="detected">
Detected as <span class="edit">United States (+1) 📝</span>
</div>

CSS

.edit {
  color: blue;
}

.detected {
  font-size: 0.92em;
}