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

13 lines
228 B
TypeScript

import { styled } from "../stitches.config";
import Box from "./Box";
const Container = styled(Box, {
width: "100%",
marginLeft: "auto",
marginRight: "auto",
px: "$4",
maxWidth: "100%",
});
export default Container;