@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
17 lines (15 loc) • 762 B
TypeScript
import { VuiTheme } from "../../theme/types.js";
import { ChildrenProp } from "../types.js";
import { FC } from "react";
//#region src/core/vuiProvider/vuiProvider.d.ts
type VuiProviderProps = {
/** Adds basic styles to body @default true */globalStyle?: boolean; /** Applies custom CSS reset @default true */
resetCSS?: boolean; /** Modified theme config using 'extendTheme' utility */
theme?: VuiTheme; /** Enables displaying offline/online toast notifications @default false */
notifyOffline?: boolean;
};
/** Provides theme to all wrapped components and by default includes CSS reset and global styles. */
declare const VuiProvider: FC<VuiProviderProps & ChildrenProp>;
//#endregion
export { VuiProvider };
//# sourceMappingURL=vuiProvider.d.ts.map