mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
24 lines
569 B
HTML
24 lines
569 B
HTML
<button>
|
|
<svg height="24" width="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
<path d="M0 0h24v24H0z" fill="none"></path>
|
|
<path d="M20 17h2v2H2v-2h2v-7a8 8 0 1 1 16 0v7zm-2 0v-7a6 6 0 1 0-12 0v7h12zm-9 4h6v2H9v-2z" fill="currentColor"></path>
|
|
</svg>
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by mrhyddenn - Tags: button */
|
|
button {
|
|
background: none;
|
|
border: none;
|
|
padding: 15px 15px;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
button:hover {
|
|
background: rgba(170, 170, 170, 0.062);
|
|
transition: 0.5s;
|
|
}
|
|
|
|
button svg {
|
|
color: #fff;
|
|
}
|
|
</style>
|