Icono fantasma cuadrado
Icono fantasma cuadrado: botón en CSS. Copia las reglas, o el prompt que reproduce el resultado.
CSS
.btn-079 {
display: inline-grid;
place-items: center;
width: 40px;
height: 40px;
color: #6b7280;
background: transparent;
border: 0;
border-radius: 8px;
cursor: pointer;
transition: background .15s,color .15s
}
.btn-079 svg {
transition: transform .4s
}
.btn-079:hover {
background: #f3f4f6;
color: #111827
}
.btn-079:hover svg {
transform: rotate(60deg)
}
.btn-079:focus-visible {
outline: 2px solid #111827;
outline-offset: 2px
}
.btn-079:active {
background: #e5e7eb
}
HTML
<button class="btn-079" aria-label="Settings"><svg viewBox="0 0 24 24" width="20" height="20" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="3"/><path d="M19.4 15a1.7 1.7 0 0 0 .3 1.8l.1.1a2 2 0 1 1-2.8 2.8l-.1-.1a1.7 1.7 0 0 0-1.8-.3 1.7 1.7 0 0 0-1 1.5V21a2 2 0 1 1-4 0v-.1a1.7 1.7 0 0 0-1.1-1.5 1.7 1.7 0 0 0-1.8.3l-.1.1a2 2 0 1 1-2.8-2.8l.1-.1a1.7 1.7 0 0 0 .3-1.8 1.7 1.7 0 0 0-1.5-1H3a2 2 0 1 1 0-4h.1a1.7 1.7 0 0 0 1.5-1.1 1.7 1.7 0 0 0-.3-1.8l-.1-.1a2 2 0 1 1 2.8-2.8l.1.1a1.7 1.7 0 0 0 1.8.3H9a1.7 1.7 0 0 0 1-1.5V3a2 2 0 1 1 4 0v.1a1.7 1.7 0 0 0 1 1.5 1.7 1.7 0 0 0 1.8-.3l.1-.1a2 2 0 1 1 2.8 2.8l-.1.1a1.7 1.7 0 0 0-.3 1.8V9a1.7 1.7 0 0 0 1.5 1H21a2 2 0 1 1 0 4h-.1a1.7 1.7 0 0 0-1.5 1z"/></svg></button>Prompt
Un botón de barra de herramientas cuadrado de 40px solo con icono: transparente, radio de 8px, icono de engranaje SVG inline de 20px gris #6b7280. Al pasar el cursor el fondo pasa a #f3f4f6, el icono se oscurece a #111827 y el engranaje gira 60deg en 400ms. Active #e5e7eb. Outline de foco de 2px oscuro.