# Chevron-Reveal (B 081)

Kategorie: Buttons  
Tags: icon, chevron, hidden-icon, width-grow  
Seite: https://designforai.dev/de/snippet/btn-081

## Prompt

Eine violette #7c3aed Pille mit weißem Text 14px semibold, 12px mal 24px Padding. Ein 16px Chevron-rechts SVG ist versteckt (0 Breite, 0 Opacity); beim Hover weitet es sich auf 16px mit 8px linkem Margin und blendet ein (200ms), wodurch der Button etwas breiter wird. Hover #6d28d9, active #5b21b6. Fokus-Outline 2px Violett.

## HTML

```html
<button class="btn-081">Continue<svg viewBox="0 0 24 24" width="16" height="16" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><path d="M9 6l6 6-6 6"/></svg></button>
```

## CSS

```css
.btn-081 {
  display: inline-flex;
  align-items: center;
  font: 600 14px/1 system-ui,sans-serif;
  color: #fff;
  background: #7c3aed;
  border: 0;
  border-radius: 999px;
  padding: 12px 24px;
  cursor: pointer;
  transition: background .15s
}
.btn-081 svg {
  width: 0;
  opacity: 0;
  margin-left: 0;
  transition: width .2s,opacity .2s,margin-left .2s
}
.btn-081:hover {
  background: #6d28d9
}
.btn-081:hover svg {
  width: 16px;
  opacity: 1;
  margin-left: 8px
}
.btn-081:focus-visible {
  outline: 2px solid #7c3aed;
  outline-offset: 3px
}
.btn-081:active {
  background: #5b21b6
}
```
