forked from ourworld_web/www_engage_os
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			247 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			247 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import clsx from 'clsx'
 | 
						|
 | 
						|
export function Container({
 | 
						|
  className,
 | 
						|
  ...props
 | 
						|
}: React.ComponentPropsWithoutRef<'div'>) {
 | 
						|
  return (
 | 
						|
    <div
 | 
						|
      className={clsx('mx-auto max-w-7xl px-4 sm:px-6 lg:px-8', className)}
 | 
						|
      {...props}
 | 
						|
    />
 | 
						|
  )
 | 
						|
}
 |