flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
7 lines (6 loc) • 327 B
TypeScript
import React from "react";
import type { ThemeMode } from "../../hooks/use-theme-mode";
export interface ThemeModeScriptProps extends React.ComponentPropsWithoutRef<"script"> {
mode?: ThemeMode;
}
export declare const ThemeModeScript: ({ mode, ...others }: ThemeModeScriptProps) => import("react/jsx-runtime").JSX.Element;