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

22 lines (21 loc) 701 B
import type { DeepPartial, FlowbiteBoolean, FlowbiteClass, FlowbiteColors } from 'flowbite-angular'; export interface NavbarColors extends Pick<FlowbiteColors, 'primary' | 'gray'> { [key: string]: string; } export interface NavbarProperties { isRounded: keyof FlowbiteBoolean; hasBorder: keyof FlowbiteBoolean; isFixed: keyof FlowbiteBoolean; customStyle: DeepPartial<NavbarTheme>; } export interface NavbarTheme { root: { base: string; color: NavbarColors; isRounded: FlowbiteBoolean; hasBorder: FlowbiteBoolean; isFixed: FlowbiteBoolean; }; } export declare const navbarTheme: NavbarTheme; export type NavbarClass = FlowbiteClass;