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
32 lines (31 loc) • 843 B
TypeScript
import type { SidebarColors } from './sidebar.theme';
import type { DeepPartial, FlowbiteClass } from 'flowbite-angular';
/**
* Required properties for the class generation of `SidebarItemGroupComponent`
*/
export interface SidebarItemGroupProperties {
color: keyof SidebarColors;
customStyle: DeepPartial<SidebarItemGroupTheme>;
}
/**
* Theme definition for `SidebarItemGroupComponent`
*/
export interface SidebarItemGroupTheme {
root: {
base: string;
};
spanText: {
base: string;
color: SidebarColors;
};
}
/**
* Default theme for `SidebarItemGroupComponent`
*/
export declare const sidebarItemGroupTheme: SidebarItemGroupTheme;
/**
* Generated class definition for `SidebarItemGroupComponent`
*/
export interface SidebarItemGroupClass extends FlowbiteClass {
spanClass: string;
}