12 lines
220 B
TypeScript
12 lines
220 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;
|