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
30 lines (29 loc) • 807 B
TypeScript
import type { DeepPartial, FlowbiteClass, FlowbiteColors } from 'flowbite-angular';
/**
* Available colors for `BreadcrumbComponent`
*/
export interface BreadcrumbColors extends Pick<FlowbiteColors, 'primary' | 'dark' | 'blue' | 'red' | 'green' | 'yellow'> {
[key: string]: string;
}
/**
* Required properties for the class generation of `BreadcrumbComponent`
*/
export interface BreadcrumbProperties {
customStyle: DeepPartial<BreadcrumbTheme>;
}
/**
* Theme definition for `BreadcrumbComponent`
*/
export interface BreadcrumbTheme {
root: {
base: string;
};
}
/**
* Default theme for `BreadcrumbComponent`
*/
export declare const breadcrumbTheme: BreadcrumbTheme;
/**
* Generated class definition for `BreadcrumbComponent`
*/
export type BreadcrumbClass = FlowbiteClass;