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) • 594 B
TypeScript
import type { DeepPartial, FlowbiteClass } from 'flowbite-angular';
/**
* Required properties for the class generation of `ModalFooterComponent`
*/
export interface ModalFooterProperties {
customStyle: DeepPartial<ModalFooterTheme>;
}
/**
* Theme definition for `ModalFooteromponent`
*/
export interface ModalFooterTheme {
root: {
base: string;
};
}
/**
* Default theme for `ModalFooterComponent`
*/
export declare const modalFooterTheme: ModalFooterTheme;
/**
* Generated class definition for `ModalFooterComponent`
*/
export type ModalFooterClass = FlowbiteClass;