UNPKG

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

27 lines (26 loc) 757 B
import type { NavbarColors } from './navbar.theme'; import type { DeepPartial, FlowbiteClass } from 'flowbite-angular'; /** * Required properties for the class generation of `NavbarIconButtonComponent` */ export interface NavbarIconButtonProperties { color: keyof NavbarColors; customStyle: DeepPartial<NavbarIconButtonTheme>; } /** * Theme definition for `NavbarIconButtonComponent` */ export interface NavbarIconButtonTheme { root: { base: string; color: NavbarColors; }; } /** * Default theme for `NavbarIconButtonComponent` */ export declare const navbarIconButtonTheme: NavbarIconButtonTheme; /** * Generated class definition for `NavbarIconButtonComponent` */ export type NavbarIconButtonClass = FlowbiteClass;