UNPKG

@actinc/dls

Version:

Design Language System (DLS) for ACT & Encoura front-end projects.

16 lines 952 B
/** * Copyright (c) ACT, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import { Theme } from '@mui/material/styles'; import { ThemeProviderProps as MuiThemeProviderProps } from '@mui/material/styles/ThemeProvider'; import { FC } from 'react'; export interface ThemeProviderProps extends MuiThemeProviderProps { theme: 'ACT' | 'ACT_ET' | 'ENCOURA' | 'ENCOURA_CLASSIC' | 'ENCOURAGE' | 'ENCOURAGE_E4E' | Theme; locale?: 'azAZ' | 'bgBG' | 'caES' | 'csCZ' | 'deDE' | 'enUS' | 'esES' | 'etEE' | 'faIR' | 'fiFI' | 'frFR' | 'heIL' | 'hiIN' | 'huHU' | 'hyAM' | 'idID' | 'isIS' | 'itIT' | 'jaJP' | 'koKR' | 'nlNL' | 'plPL' | 'ptBR' | 'ptPT' | 'roRO' | 'ruRU' | 'skSK' | 'svSE' | 'trTR' | 'ukUA' | 'viVN' | 'zhCN'; } export declare const ThemeProvider: FC<ThemeProviderProps>; export default ThemeProvider; //# sourceMappingURL=index.d.ts.map