@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
21 lines (20 loc) • 812 B
TypeScript
import { VuiTheme } from "../../theme/types.js";
import "../../theme/index.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 as default };
//# sourceMappingURL=vuiProvider.d.ts.map