flowbite-angular
Version:
<div align="center"> <h1>:construction: flowbite-angular (unreleased) :construction:</h1> <p> <a href="https://flowbite.com"> <img alt="Flowbite - Tailwind CSS components" width="350" src="https://flowbite.s3.amazonaws.com/github/logo-github
37 lines (36 loc) • 1.52 kB
TypeScript
import type { NavbarBrandClass } from './navbar-brand.theme';
import { NavbarBrandThemeService } from './navbar-brand.theme.service';
import { NavbarComponent } from './navbar.component';
import { BaseComponent } from 'flowbite-angular';
import { InjectionToken } from '@angular/core';
import * as i0 from "@angular/core";
export declare const FLOWBITE_NAVBAR_BRAND_CUSTOM_STYLE_DEFAULT_VALUE: InjectionToken<{
root?: {
base?: string | undefined;
} | undefined;
}>;
export declare const navbarBrandDefaultThemeProvider: import("@angular/core").EnvironmentProviders;
/**
* @see https://flowbite.com/docs/components/navbar/
*/
export declare class NavbarBrandComponent extends BaseComponent<NavbarBrandClass> {
/**
* Service injected used to generate class
*/
readonly themeService: NavbarBrandThemeService;
/**
* The parent `NavbarComponent`
*/
readonly navbarComponent: NavbarComponent;
/**
* Set the custom style for this navbar brand
*/
customStyle: import("@angular/core").ModelSignal<{
root?: {
base?: string | undefined;
} | undefined;
}>;
fetchClass(): NavbarBrandClass;
static ɵfac: i0.ɵɵFactoryDeclaration<NavbarBrandComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<NavbarBrandComponent, "flowbite-navbar-brand", never, { "customStyle": { "alias": "customStyle"; "required": false; "isSignal": true; }; }, { "customStyle": "customStyleChange"; }, never, ["*"], true, never>;
}