Files
xrpl-hooks-ide/components/Stack.tsx
2022-08-17 11:50:49 +05:30

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