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

    Variable UI_BUTTON_DEFAULTSConst

    UI_BUTTON_DEFAULTS: InjectionToken<ButtonDefaults> = ...

    Injection token to customise the default appearance of every UIButton in a subtree. Provide it at the application or component level:

    providers: [
    { provide: UI_BUTTON_DEFAULTS, useValue: { variant: 'outlined', color: 'neutral' } },
    ]

    Individual <ui-button> inputs still override these defaults.