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
27 lines (26 loc) • 693 B
TypeScript
import type { NavbarColors } from './navbar.theme';
import type { DeepPartial, FlowbiteClass } from 'flowbite-angular';
/**
* Required properties for class generation of `NavbarItemComponent`
*/
export interface NabvarItemProperties {
color: keyof NavbarColors;
customStyle: DeepPartial<NavbarItemTheme>;
}
/**
* Theme definition for `NavbarItemComponent`
*/
export interface NavbarItemTheme {
root: {
base: string;
color: NavbarColors;
};
}
/**
* Default theme for `NavbarItemComponent`
*/
export declare const navbarItemTheme: NavbarItemTheme;
/**
* Generated class definition for `NavbarItemComponent`
*/
export type NavbarItemClass = FlowbiteClass;