You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			36 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			JavaScript
		
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			JavaScript
		
	
'use client';
 | 
						|
 | 
						|
import PropTypes from 'prop-types';
 | 
						|
import { createGrid as createGrid2 } from '@mui/system/Unstable_Grid';
 | 
						|
import { styled, useThemeProps as _useThemeProps } from '../styles';
 | 
						|
var Grid2 = createGrid2({
 | 
						|
  createStyledComponent: styled('div', {
 | 
						|
    name: 'MuiGrid2',
 | 
						|
    slot: 'Root',
 | 
						|
    overridesResolver: function overridesResolver(props, styles) {
 | 
						|
      return styles.root;
 | 
						|
    }
 | 
						|
  }),
 | 
						|
  componentName: 'MuiGrid2',
 | 
						|
  useThemeProps: function useThemeProps(inProps) {
 | 
						|
    return _useThemeProps({
 | 
						|
      props: inProps,
 | 
						|
      name: 'MuiGrid2'
 | 
						|
    });
 | 
						|
  }
 | 
						|
});
 | 
						|
process.env.NODE_ENV !== "production" ? Grid2.propTypes /* remove-proptypes */ = {
 | 
						|
  // ┌────────────────────────────── Warning ──────────────────────────────┐
 | 
						|
  // │ These PropTypes are generated from the TypeScript type definitions. │
 | 
						|
  // │ To update them, edit the TypeScript types and run `pnpm proptypes`. │
 | 
						|
  // └─────────────────────────────────────────────────────────────────────┘
 | 
						|
  /**
 | 
						|
   * The content of the component.
 | 
						|
   */
 | 
						|
  children: PropTypes.node,
 | 
						|
  /**
 | 
						|
   * @ignore
 | 
						|
   */
 | 
						|
  sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object])
 | 
						|
} : void 0;
 | 
						|
export default Grid2; |