mirror of
https://github.com/bitwarden/browser
synced 2026-01-31 08:43:54 +00:00
16 lines
420 B
HTML
16 lines
420 B
HTML
<bit-form-control [inline]="!block" disableMargin>
|
|
<input
|
|
type="radio"
|
|
bitRadio
|
|
[id]="inputId"
|
|
[disabled]="groupDisabled || disabled()"
|
|
[value]="value()"
|
|
[checked]="selected"
|
|
(change)="onInputChange()"
|
|
(blur)="onBlur()"
|
|
/>
|
|
|
|
<ng-content select="bit-label" ngProjectAs="bit-label"></ng-content>
|
|
<ng-content select="bit-hint" ngProjectAs="bit-hint"></ng-content>
|
|
</bit-form-control>
|