@naturacosmeticos/natds-web
Version:
A collection of components from Natura Design System for React websites and webapps
27 lines (26 loc) • 704 B
TypeScript
import * as React from 'react';
import { IThemeWebBase } from '../Themes/IThemeWeb';
export interface IProviderProps {
/**
* @required
* @type node
*/
children: React.ReactNode;
/**
* Defaults to Natura Light theme
*
* @optional
* @type IThemeWeb
*/
theme?: IThemeWebBase;
/**
* A css prefix to be added in the dynamic class names generation.
* This option is used to isolate the generated class names and it is useful if
* you are developing a micro frontend or
* adding the lib in a project with another instance of @material-ui
* @default natds
* @optional
* @type string
*/
cssPrefix?: string;
}