@naturacosmeticos/natds-web
Version:
A collection of components from Natura Design System for React websites and webapps
16 lines (15 loc) • 474 B
TypeScript
import * as React from 'react';
import { ContainerProps } from '@material-ui/core/Container';
export declare type ContainerMaxWidth = ContainerProps['maxWidth'];
export interface IContainerProps extends ContainerProps {
/**
* The component used for the root node.
*
* Either a string to use a HTML element or a component.
* Will be `div` by default.
*
* @optional
* @type React.ElementType
*/
component?: React.ElementType;
}