UNPKG

@vertisanpro/flowbite-react

Version:

Non-Official React components built for Flowbite and Tailwind CSS

15 lines (14 loc) 412 B
import type { FC } from 'react'; import React from 'react'; import type { ThemeMode } from '../../hooks/use-theme-mode'; import type { CustomFlowbiteTheme } from './FlowbiteTheme'; export interface ThemeProps { mode?: ThemeMode; theme?: CustomFlowbiteTheme; } interface FlowbiteProps { children: React.ReactNode; theme?: ThemeProps; } export declare const Flowbite: FC<FlowbiteProps>; export {};