mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
31 lines
No EOL
1,011 B
HTML
31 lines
No EOL
1,011 B
HTML
<!-- From Uiverse.io by EmaCoto - Tags: icon, green, button, add -->
|
|
<button
|
|
class="rounded-lg relative w-36 h-10 cursor-pointer flex items-center border border-green-500 bg-green-500 group hover:bg-green-500 active:bg-green-500 active:border-green-500"
|
|
>
|
|
<span
|
|
class="text-gray-200 font-semibold ml-8 transform group-hover:translate-x-20 transition-all duration-300"
|
|
>Add Item</span
|
|
>
|
|
<span
|
|
class="absolute right-0 h-full w-10 rounded-lg bg-green-500 flex items-center justify-center transform group-hover:translate-x-0 group-hover:w-full transition-all duration-300"
|
|
>
|
|
<svg
|
|
class="svg w-8 text-white"
|
|
fill="none"
|
|
height="24"
|
|
stroke="currentColor"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
stroke-width="2"
|
|
viewBox="0 0 24 24"
|
|
width="24"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<line x1="12" x2="12" y1="5" y2="19"></line>
|
|
<line x1="5" x2="19" y1="12" y2="12"></line>
|
|
</svg>
|
|
</span>
|
|
</button>
|
|
|
|
|
|
|