15 lines
703 B
Twig
15 lines
703 B
Twig
<form class="flex items-center space-x-4">
|
|
<div class="flex-1">
|
|
<input class="py-1 px-2 w-full border border-blue-800" type="textfield" placeholder="Search..." />
|
|
</div>
|
|
|
|
<div>
|
|
<button class="py-2 px-3 block rounded-md bg-blue-200 transition-colors duration-200 hover:bg-blue-800" type="submit">
|
|
<svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-white" viewBox="0 0 20 20" fill="currentColor">
|
|
<path fill-rule="evenodd" d="M8 4a4 4 0 100 8 4 4 0 000-8zM2 8a6 6 0 1110.89 3.476l4.817 4.817a1 1 0 01-1.414 1.414l-4.816-4.816A6 6 0 012 8z" clip-rule="evenodd" />
|
|
</svg>
|
|
<span class="sr-only">Search</span>
|
|
</button>
|
|
</div>
|
|
</form>
|