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
29 lines (28 loc) • 706 B
TypeScript
import type { DeepPartial, FlowbiteClass } from 'flowbite-angular';
/**
* Required properties for the class generation of `NavbarContentComponent`
*/
export interface NavbarContentProperties {
customStyle: DeepPartial<NavbarContentTheme>;
}
/**
* Theme definition for `NavbarContentComponent`
*/
export interface NavbarContentTheme {
root: {
base: string;
};
list: {
base: string;
};
}
/**
* Default theme for `NavbarContentComponent`
*/
export declare const navbarContentTheme: NavbarContentTheme;
/**
* Generated class definition for `NavbarContentComponent`
*/
export interface NavbarContentClass extends FlowbiteClass {
navbarContentListClass: string;
}