1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-13 15:03:26 +00:00
Files
browser/libs/vault/src/components/carousel/carousel-button/carousel-button.component.html
Will Martin 15b72c6b7c find and replace current usage
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-26 18:48:09 -05:00

14 lines
495 B
HTML

<button
#btn
type="button"
role="tab"
class="tw-size-6 tw-p-0 tw-flex tw-items-center tw-justify-center tw-border-2 tw-border-solid tw-rounded-full tw-transition tw-bg-transparent tw-border-transparent focus-visible:tw-outline-none focus-visible:tw-border-primary-600"
[ngClass]="dynamicClasses"
[attr.aria-selected]="isActive"
[attr.tabindex]="isActive ? 0 : -1"
[attr.aria-label]="slide.label"
(click)="onClick.emit()"
>
<bit-svg [icon]="CarouselIcon"></bit-svg>
</button>