Files
xrpl-hooks-ide/components/Stack.tsx
2021-11-19 15:24:59 +02:00

15 lines
305 B
TypeScript

import { Children } from "react";
import Box from "./Box";
import { styled } from "../stitches.config";
import type * as Stitches from "@stitches/react";
const StackComponent = styled(Box, {
display: "flex",
flexWrap: "wrap",
flexDirection: "row",
gap: "$4",
});
export default StackComponent;