12 lines
215 B
TypeScript
12 lines
215 B
TypeScript
import Box from './Box'
|
|
import { styled } from '../stitches.config'
|
|
|
|
const StackComponent = styled(Box, {
|
|
display: 'flex',
|
|
flexWrap: 'wrap',
|
|
flexDirection: 'row',
|
|
gap: '$4'
|
|
})
|
|
|
|
export default StackComponent
|