13 lines
228 B
TypeScript
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;
|