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
24 lines (23 loc) • 611 B
TypeScript
import type { DeepPartial, FlowbiteClass } from 'flowbite-angular';
/**
* Required properties for the cmass generation of `DropdownItemComponent`
*/
export interface DropdownItemProperties {
customStyle: DeepPartial<DropdownItemTheme>;
}
/**
* Theme definition for `DropdownItemComponent`
*/
export interface DropdownItemTheme {
root: {
base: string;
};
}
/**
* Default theme value for `DropdownItemComponent`
*/
export declare const dropdownItemTheme: DropdownItemTheme;
/**
* Generated class definition for `DropdownItemComponent`
*/
export type DropdownItemClass = FlowbiteClass;