@taylorwhite/copacetic-frontity-theme
Version:
A frontity theme made with Chakra UI
20 lines (17 loc) • 379 B
JavaScript
import React from "react";
import { Box } from "@chakra-ui/core";
const sizes = {
xs: "640px",
sm: "700px",
md: "750px",
lg: "1150px",
huge: "1550px",
max: "2560px"
};
/**
* @param {React.ComponentProps<typeof Box>} props
*/
const Section = ({ size = "md", ...props }) => (
<Box width="92%" mx="auto" maxW={sizes[size]} {...props} />
);
export default Section;