9 lines
		
	
	
		
			141 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			141 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { styled } from '../stitches.config'
 | 
						|
 | 
						|
const Box = styled('div', {
 | 
						|
  // all: "unset",
 | 
						|
  boxSizing: 'border-box'
 | 
						|
})
 | 
						|
 | 
						|
export default Box
 |