import React from 'react' import classnames from 'classnames' import { type ContentProps } from '~components/Content' import styles from './Container.module.css' /** * {@link https://cultureamp.atlassian.net/wiki/spaces/DesignSystem/pages/3086156812/Layout Guidance} | * {@link https://cultureamp.design/?path=/docs/components-content--docs Storybook} */ export const Container = React.forwardRef( ({ children, style, classNameOverride, ...restProps }, ref) => (
{children}
), ) Container.displayName = 'Container'