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) • 635 B
TypeScript
import type { DeepPartial, FlowbiteClass } from 'flowbite-angular';
/**
* Required properties for the class generation of `DropdownDividerComponent`
*/
export interface DropdownDividerProperties {
customStyle: DeepPartial<DropdownDividerTheme>;
}
/**
* Theme definition for `DropdownDividerComponent`
*/
export interface DropdownDividerTheme {
root: {
base: string;
};
}
/**
* Default theme for `DropdownDividerComponent`
*/
export declare const dropdownDividerTheme: DropdownDividerTheme;
/**
* Generated class definition for `DropdownDividerComponent`
*/
export type DropdownDividerClass = FlowbiteClass;