@theredhead — Frontend Library - v1.0.0
    Preparing search index...

    Thin wrapper around a native <button> element.

    Content is projected via <ng-content>, and native (click) events bubble up naturally — no custom output needed.

    <ui-button variant="outlined" size="small" (click)="save()">
    Save
    </ui-button>
    Index

    Constructors

    Properties

    ariaLabel: InputSignal<string | undefined> = ...

    Accessible label forwarded to the native <button> as aria-label.

    Use this when the button has no visible text content (e.g. icon-only buttons like a close/remove button).

    color: InputSignal<ButtonColor> = ...

    Colour preset.

    disabled: InputSignal<boolean> = ...

    Whether the button is disabled.

    pill: InputSignal<boolean> = ...

    Render with fully rounded (pill / capsule) shape.

    size: InputSignal<ButtonSize> = ...

    Size preset.

    type: InputSignal<"button" | "submit" | "reset"> = ...

    Native button type attribute.

    variant: InputSignal<ButtonVariant> = ...

    Visual style variant.