Is it possible to change the field to an icon for mobile devices? See the example below:
https://i.sstatic.net/UNZG8.png
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" />
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
</head>
<body>
<div class="col-6">
<div class="divLogo input-group" style="float: right;">
<input class="form-control" type="text" placeholder="Search">
<!--How change to icon?-->
<div class="input-group-btn">
<button class="btn btn-danger" type="submit">BUSCAR</button>
</div>
</div>
</div>
</body>
</html>