mistui-kit
Version:
**👉 [Try MistUi Live](https://gilded-tanuki-0eb52b.netlify.app/) — interactive playground & docs**
12 lines (11 loc) • 409 B
TypeScript
import '@/style/index.css';
import '@/style/animate.css';
import "@/style/tailwind.css";
import { PropsWithChildren } from 'react';
import { Theme } from './types';
type ThemeProviderProps = PropsWithChildren<{
theme?: Theme;
}>;
export declare function useTheme(): Theme;
export declare function ThemeProvider({ theme, children }: ThemeProviderProps): import("react/jsx-runtime").JSX.Element;
export {};