jerguero-cs/Pages/Components/_Badge.cshtml

8 lines
180 B
Plaintext
Raw Permalink Normal View History

2024-08-24 00:25:42 +00:00
@{
var text = ViewData["text"];
}
2024-08-24 16:45:34 +00:00
<button class="inline-block mr-2 py-1 px-2 text-xs rounded-full hover:underline bg-[#082f49] text-white cursor-pointer">
2024-08-24 00:25:42 +00:00
@text
</button>