lune-ui-lib
Version:
Lune UI Components Library
12 lines (11 loc) • 339 B
TypeScript
import type { SxProps } from '@mui/material';
import { Breakpoint } from '@mui/system';
import * as React from 'react';
import { FC } from 'react';
export interface ContainerProps {
sx?: SxProps;
maxWidth?: Breakpoint | false;
children: React.ReactNode;
}
declare const Container: FC<ContainerProps>;
export default Container;