@hhgtech/hhg-components
Version:
Hello Health Group common components
13 lines (12 loc) • 594 B
TypeScript
import React from 'react';
import { MantineProviderProps as _MantineProviderProps } from '@mantine/core';
import { LOCALE } from "../../../interfaces/types";
import { CustomStylesType } from "../theme/types";
export type MantineProviderProps = {
children: React.ReactNode;
locale: LOCALE;
template?: 'hb' | 'mb';
customStyleType?: CustomStylesType;
isNotifications?: boolean;
} & _MantineProviderProps;
export declare const MantineProvider: ({ children, locale, template, isNotifications, customStyleType, ...props }: MantineProviderProps) => React.JSX.Element;