import React from "react" import clsx from "clsx" import SectionDivider from "../Divider" import { forwardRef } from "react" import { WideSection } from "docs-ui" type SectionContainerProps = { children: React.ReactNode noTopPadding?: boolean noDivider?: boolean className?: string } const SectionContainer = forwardRef( function SectionContainer( { children, noTopPadding = false, noDivider = false, className }, ref ) { return (
{children} {!noDivider && }
) } ) export default SectionContainer