12 lines
222 B
Plaintext
12 lines
222 B
Plaintext
---
|
|
// SearchBar.astro
|
|
---
|
|
|
|
<div class="border-b p-4">
|
|
<input
|
|
type="text"
|
|
placeholder="Search prompts..."
|
|
class="w-full p-2 border rounded bg-gray-300 text-gray-800 focus:outline-none focus:ring"
|
|
/>
|
|
</div>
|