import React, { forwardRef, ElementRef } from "react" import { PageContainerVariants, pageContainerVariants, } from "../../styles/utils" import { classNames } from "../../utils" import { Block, BlockProps } from "../Block" export type ContainerProps = Omit & PageContainerVariants /** * A centered container for a page with a max width. */ export const Container = forwardRef, ContainerProps>( function Container({ className, padding, ...rest }, ref) { return ( ) }, )