UNPKG

@mtec-solutions-org/design-system

Version:

A React Native Web design system library with theme and components

15 lines 497 B
import { type Theme } from "../theme"; import { type ReactNode } from "react"; import { type Themes } from "../constants"; type Props = { children: ReactNode; overrideTheme?: Theme; }; interface ITheme { theme: Themes; toggleTheme: () => void; } export declare const useThemeContext: () => ITheme; export declare const DripsyThemeProvider: ({ children, overrideTheme }: Props) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=DripsyThemeProvider.d.ts.map