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

24 lines (23 loc) 581 B
import type { DeepPartial, FlowbiteClass } from 'flowbite-angular'; /** * Required properties for the class generation of `ModalBodyComponent` */ export interface ModalBodyProperties { customStyle: DeepPartial<ModalBodyTheme>; } /** * Theme definition for `ModalBodyComponent` */ export interface ModalBodyTheme { root: { base: string; }; } /** * Default theme value for `ModalBodyComponent` */ export declare const modalBodyTheme: ModalBodyTheme; /** * Generated class definition for `ModalBodyComponent` */ export type ModalBodyClass = FlowbiteClass;