/** @jsxRuntime classic */ /** @jsx jsx */ import { type ComponentPropsWithoutRef } from 'react' import { jsx } from '@keystone-ui/core' /** * NOTE: should probably come from the DS? */ type ContainerProps = ComponentPropsWithoutRef<'div'> export const Container = ({ children, ...props }: ContainerProps) => (