UNPKG

@vertisanpro/flowbite-react

Version:

Non-Official React components built for Flowbite and Tailwind CSS

9 lines (8 loc) 326 B
import React from 'react'; import { ThemeInit } from '../../theme-store/init'; export const Flowbite = ({ children, theme }) => { return (React.createElement(React.Fragment, null, React.createElement(ThemeInit, { mode: theme?.mode, theme: theme?.theme }), children)); }; Flowbite.displayName = 'Flowbite';