Files
website/components/AppContainer.tsx
Kalidou Diagne 154d832d49 website v2
2024-04-05 13:01:20 +01:00

14 lines
280 B
TypeScript

import { classed } from "@tw-classed/react";
export const AppContainer = classed.div("px-6 mx-auto w-full", {
variants: {
size: {
small: "max-w-[700px] md:px-0",
medium: "max-w-screen-2xl md:px-16",
},
},
defaultVariants: {
size: "medium",
},
});